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
Is there any way to make uwsgi not to printout a traceback for every single env var on python 3 ? example :
*** Operational MODE: preforking *** b'DB_ENGINE' b'django.db.backends.postgresql' Traceback (most recent call last): File "/usr/lib/python3.6/os.py", line 674, in __setitem__ key = self.encodekey(key) File "/usr/lib/python3.6/os.py", line 745, in encode raise TypeError("str expected, not %s" % type(value).__name__) TypeError: str expected, not bytes b'PYTHONIOENCODING' b'UTF-8' Traceback (most recent call last): File "/usr/lib/python3.6/os.py", line 674, in __setitem__ key = self.encodekey(key) File "/usr/lib/python3.6/os.py", line 745, in encode raise TypeError("str expected, not %s" % type(value).__name__) TypeError: str expected, not bytes ...
Note that you see my print statement of key and value before each traceback, that was inserted above key = self.encodekey(key).
This happens for each --env argument when the python3 module is used.
The text was updated successfully, but these errors were encountered:
Dupe of #1143
Sorry, something went wrong.
No branches or pull requests
Is there any way to make uwsgi not to printout a traceback for every single env var on python 3 ? example :
Note that you see my print statement of key and value before each traceback, that was inserted above key = self.encodekey(key).
This happens for each --env argument when the python3 module is used.
The text was updated successfully, but these errors were encountered: