File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
source/Octopus.Tentacle.Client.Tests Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -825,8 +825,14 @@ public async Task MinimumAttempts_WhenSetTo3_MakesTwoRetriesEvenAfterTimeoutExce
825
825
onTimeoutActionCalled . Should ( ) . BeFalse ( ) ; // Should succeed before timeout
826
826
}
827
827
828
+ /// <summary>
829
+ /// Connection error means the tentacle did not get the request, which means the tentacle is considered to be offline.
830
+ /// This shows that we won't exceed the retry duration attempting to connect to an offline tentacle to meet the
831
+ /// minimumAttemptsForInterruptedLongRunningCalls count.
832
+ /// </summary>
833
+ /// <exception cref="HalibutClientException"></exception>
828
834
[ Test ]
829
- public async Task WhenConfiguredToMakeAMinimumNumberOfAttempts_ButWeReceiveConnectingExceptions_ThatExceedTheTimeout_TheMinimumNumberOfAttemptsAreNotMade ( )
835
+ public async Task WhenConfiguredToMakeAMinimumNumberOfAttempts_AndTheFirstAttemptExceedsTheRetryDuration_AndTheFailureIsAConnectingFailure_ARetryIsNotMade ( )
830
836
{
831
837
var callCount = 0 ;
832
838
var onRetryActionCalled = false ;
You can’t perform that action at this time.
0 commit comments