Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Deployment/send-filestoendpoint.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ function Send-FilesToEndpoint {
# Get all files in the Data folder
$files = Get-ChildItem -Path $DataFolderPath -File

# Create HttpClient with timeout
$timeout = 300000 # Timeout in milliseconds (e.g., 300000 ms = 300 seconds)
# Create HttpClient with timeout with 20minutes
$timeout = 1200000 # Timeout in milliseconds (e.g., 1200000 ms = 1200 seconds)
$httpClient = [System.Net.Http.HttpClient]::new()
$httpClient.Timeout = [TimeSpan]::FromMilliseconds($timeout)

Expand Down
2 changes: 1 addition & 1 deletion infra/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,7 @@ module avmStorageAccount 'br/public:avm/res/storage/storage-account:0.20.0' = {

// ========== AI Foundry: AI Search ========== //
var aiSearchName = 'srch-${solutionSuffix}'
module avmSearchSearchServices 'br/public:avm/res/search/search-service:0.9.1' = {
module avmSearchSearchServices 'br/public:avm/res/search/search-service:0.11.1' = {
name: take('avm.res.cognitive-search-services.${aiSearchName}', 64)
params: {
name: aiSearchName
Expand Down