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
Currently, the following works:
import aegea aegea.initialize() from aegea.batch import submit, submit_parser submit(submit_parser.parse_args([...]))
While the following does not:
import aegea from aegea.batch import submit, submit_parser aegea.initialize() submit(submit_parser.parse_args([...]))
This is because the global aegea.config object is rebound at runtime in the init sequence.
aegea.config
Replace the global object with an auto-vivifying placeholder.
Also, init fails on read-only FS. Fall back and print a warning instead of failing.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, the following works:
While the following does not:
This is because the global
aegea.config
object is rebound at runtime in the init sequence.Replace the global object with an auto-vivifying placeholder.
Also, init fails on read-only FS. Fall back and print a warning instead of failing.
The text was updated successfully, but these errors were encountered: