Skip to content

Commit 0289c94

Browse files
committed
fix: set total timeout to 3x
1 parent b736268 commit 0289c94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Catglobe.CgScript.Runtime/HostExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ private static IServiceCollection AddCommonCgScript(IServiceCollection services,
5353
.AddHttpMessageHandler<CgScriptAuthHandler>()
5454
.AddStandardResilienceHandler(o => {
5555
o.AttemptTimeout.Timeout = TimeSpan.FromMinutes(30);
56-
o.TotalRequestTimeout.Timeout = TimeSpan.FromMinutes(60);
56+
o.TotalRequestTimeout.Timeout = TimeSpan.FromMinutes(90);
5757
});
5858
return services;
5959
}

0 commit comments

Comments
 (0)