Skip to content

Commit

Permalink
Stop the process if we cannot start the command
Browse files Browse the repository at this point in the history
  • Loading branch information
shs96c committed Feb 22, 2021
1 parent c969deb commit 1ca2bac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/server/src/org/openqa/selenium/grid/Bootstrap.java
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ private static void runMain(ClassLoader loader, String[] args) {
main.invoke(null, new Object[] {args});
} catch (ReflectiveOperationException e) {
e.printStackTrace();
System.err.println("Unable to load main class");
System.exit(1);
}
}

Expand Down

0 comments on commit 1ca2bac

Please sign in to comment.