Skip to content

Commit 25152f8

Browse files
committed
Add timeout configurations
Introduce `AttemptTimeout.Timeout` of 15 seconds
1 parent 5d4ef9d commit 25152f8

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

SqlDatabaseVectorSearch/Program.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
{
5252
configure.AddStandardResilienceHandler(options =>
5353
{
54+
options.AttemptTimeout.Timeout = TimeSpan.FromSeconds(15);
5455
options.TotalRequestTimeout.Timeout = TimeSpan.FromMinutes(2);
5556
});
5657
});

0 commit comments

Comments
 (0)