Skip to content

Commit

Permalink
Added delay between connect attempts in Eclipse view. Might fix #191.
Browse files Browse the repository at this point in the history
  • Loading branch information
S1artie committed Apr 18, 2018
1 parent 66a7cc3 commit f9bba09
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2768,6 +2768,13 @@ public void run() {
} catch (IOException exc) {
// exceptions are expected, that just means we need to retry
}

// Wait a few milliseconds between attempts
try {
Thread.sleep(1000);
} catch (InterruptedException exc) {
// don't care
}
}
executeTestAction.setEnabled(true);
executeDebugTestAction.setEnabled(true);
Expand Down

0 comments on commit f9bba09

Please sign in to comment.