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
If the septentrion port number is an int, subprocess.run which launches psql fails with a traceback.
subprocess.run
This can be solved by making sure the port number, as well as all other environment injected values, are strings.
@ThomasEcuer is on it :)
The text was updated successfully, but these errors were encountered:
Ensure env-vars are handled as strings
01a75e7
This avoids suprocess.run to fail ambiguously due to non-string values inherited from configuration (like postgresql' port number). Refs #83.
c0f7177
ThomasEcuer
No branches or pull requests
If the septentrion port number is an int,
subprocess.run
which launches psql fails with a traceback.This can be solved by making sure the port number, as well as all other environment injected values, are strings.
@ThomasEcuer is on it :)
The text was updated successfully, but these errors were encountered: