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 <github@albersweb.de>
  • Loading branch information
albers committed Nov 26, 2024
1 parent e77760f commit 094510a
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 094510a

Please sign in to comment.