Skip to content

Commit

Permalink
Fix unauthorized?
Browse files Browse the repository at this point in the history
  • Loading branch information
vplauzon committed Oct 25, 2023
1 parent 39ac400 commit a80094f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/DeltaKustoIntegration/Kusto/KustoManagementGateway.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ internal class KustoManagementGateway : IKustoManagementGateway
.AddRetry(new RetryStrategyOptions
{ // Unauthorized
ShouldHandle = new PredicateBuilder().Handle<KustoException>(ex => ex.FailureCode == 401),
MaxRetryAttempts = 2,
BackoffType = DelayBackoffType.Linear,
MaxRetryAttempts = 3,
BackoffType = DelayBackoffType.Exponential,
Delay = TimeSpan.FromSeconds(2)
})
.Build();
Expand Down

0 comments on commit a80094f

Please sign in to comment.