Skip to content
This repository has been archived by the owner on Apr 8, 2024. It is now read-only.

Commit

Permalink
increase token fetch retry count to 3
Browse files Browse the repository at this point in the history
  • Loading branch information
aspriddell authored Feb 10, 2023
1 parent 3c5cb81 commit 2616577
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public async ValueTask<ClientTokenInjector> GetInjector()
return _currentToken;
}

for (int i = 0; i < 2; i++)
for (int i = 0; i < 3; i++)
{
var token = await _fetchTokenDelegate.Invoke(_service, _currentToken?.Token.SessionId).ConfigureAwait(false);
_currentToken = new ClientTokenInjector(token);
Expand Down

0 comments on commit 2616577

Please sign in to comment.