Skip to content

Commit

Permalink
fix(selenium): Ignore errors when pinging hub status
Browse files Browse the repository at this point in the history
If the hub is not ready or doesn't respond for some reason then we should keep
trying until it respond successfully, or we hit the retry limit.
  • Loading branch information
NiGhTTraX committed Oct 27, 2021
1 parent bca9e12 commit 1646556
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/selenium/src/selenium.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ async function waitForNodes(
try {
actualNodes = await getCurrentlyConnectedNodes(port);
} catch (e) {
bar.interrupt(e.message);
// Ignore errors.
}

bar.tick(1, {
Expand Down

0 comments on commit 1646556

Please sign in to comment.