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 f2c05de commit 54052b9Copy full SHA for 54052b9
src/Runner.Common/JobServerQueue.cs
@@ -709,7 +709,9 @@ private async Task ProcessTimelinesUpdateQueueAsync(bool runOnce = false)
709
{
710
Trace.Info("Catch exception during update steps, skip update Results.");
711
Trace.Error(e);
712
- if (!_resultsServiceOnly)
+ _resultsServiceExceptionsCount++;
713
+ // If we hit any exceptions uploading to Results, let's skip any additional uploads to Results unless Results is serving logs
714
+ if (!_resultsServiceOnly && _resultsServiceExceptionsCount > 3)
715
716
_resultsClientInitiated = false;
717
SendResultsTelemetry(e);
0 commit comments