Skip to content

Commit

Permalink
Handling IOExceptions while following deployment log.
Browse files Browse the repository at this point in the history
  • Loading branch information
gfleury committed Sep 1, 2018
1 parent 30c1441 commit 5da2dfc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ protected Execution run() throws Exception {
getListener().getLogger().println("[app-deploy] No deployment was found!");
break;
}
Thread.sleep(5000 + (counter + 500));
Thread.sleep(5000 + (counter * 500));
counter++;
} while (counter < 20);
} else {
Expand Down

0 comments on commit 5da2dfc

Please sign in to comment.