Throw NonRetryableException on GetNextMessage from broker as needed. (#2828)

This commit is contained in:
Tingluo Huang
2023-09-05 17:21:54 -04:00
committed by GitHub
parent 143639ddac
commit d2f0a46865

View File

@@ -108,7 +108,7 @@ namespace GitHub.Runner.Listener
if (!IsGetNextMessageExceptionRetriable(ex))
{
throw;
throw new NonRetryableException("Get next message failed with non-retryable error.", ex);
}
else
{