We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e724ec commit 3038fa3Copy full SHA for 3038fa3
Example Projects/dotNetCoreExample/Examples/Basic/BasicSendWithRetry.cs
@@ -14,8 +14,8 @@ public SendResponse RunExample()
14
var client = new SocketLabsClient(ExampleConfig.ServerId, ExampleConfig.ApiKey, proxy)
15
{
16
EndpointUrl = ExampleConfig.TargetApi,
17
- RequestTimeout = 5,
18
- RetrySettings = new RetrySettings(3, TimeSpan.FromSeconds(1), TimeSpan.FromSeconds(3))
+ RequestTimeout = 120,
+ RetrySettings = new RetrySettings(3, TimeSpan.FromSeconds(5), TimeSpan.FromSeconds(5))
19
};
20
21
var message = new BasicMessage();
0 commit comments