Skip to content

Commit

Permalink
Merge pull request #44754 from albers/remote-dev-error-count
Browse files Browse the repository at this point in the history
Fix retry count in remote dev mode error message
  • Loading branch information
geoand authored Nov 27, 2024
2 parents b8ea581 + 827dd96 commit 6b617f5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ public void run() {
errorCount++;
log.error("Remote dev request failed", e);
if (errorCount == retryMaxAttempts) {
log.error("Connection failed after 10 retries, exiting");
log.errorf("Connection failed after %d retries, exiting", errorCount);
return;
}
try {
Expand Down

0 comments on commit 6b617f5

Please sign in to comment.