diff --git a/code/DeltaKustoIntegration/Kusto/KustoManagementGateway.cs b/code/DeltaKustoIntegration/Kusto/KustoManagementGateway.cs index a34b918..d7971aa 100644 --- a/code/DeltaKustoIntegration/Kusto/KustoManagementGateway.cs +++ b/code/DeltaKustoIntegration/Kusto/KustoManagementGateway.cs @@ -32,8 +32,8 @@ internal class KustoManagementGateway : IKustoManagementGateway .AddRetry(new RetryStrategyOptions { // Unauthorized ShouldHandle = new PredicateBuilder().Handle(ex => ex.FailureCode == 401), - MaxRetryAttempts = 2, - BackoffType = DelayBackoffType.Linear, + MaxRetryAttempts = 3, + BackoffType = DelayBackoffType.Exponential, Delay = TimeSpan.FromSeconds(2) }) .Build();