We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In RootTools.java: retry should be passed through to the startShell and startRootShell function call.
public static Shell getShell(boolean root, int timeout, int retry) throws IOException, TimeoutException, RootDeniedException { if (root) return Shell.startRootShell(timeout); else return Shell.startShell(timeout); }
Suggested solution:
public static Shell getShell(boolean root, int timeout, int retry) throws IOException, TimeoutException, RootDeniedException { if (root) return Shell.startRootShell(timeout, retry); else return Shell.startShell(timeout, retry); }
Or explain why you dont pass it through in comments
The text was updated successfully, but these errors were encountered:
Updated formatting, resoved context switching issues related to issue…
f8b4dad
… with Process Builder, resolved issue #8, resolved issue with shell being repeatedly closed.
23fe96a
Done, this is being passed through now.
Sorry, something went wrong.
No branches or pull requests
In RootTools.java:
retry should be passed through to the startShell and startRootShell function call.
Suggested solution:
Or explain why you dont pass it through in comments
The text was updated successfully, but these errors were encountered: