Skip to content

Commit

Permalink
Fix retry count in remote dev mode error message
Browse files Browse the repository at this point in the history
Signed-off-by: Harald Albers <[email protected]>
  • Loading branch information
albers authored and geoand committed Nov 27, 2024
1 parent d99e142 commit 827dd96
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 827dd96

Please sign in to comment.