You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default the Python plugin does not initialize the GIL. This means your app-generated threads will not run. If you need threads, remember to enable them with enable-threads. Running uWSGI in multithreading mode (with the threads options) will automatically enable threading support. This “strange” default behaviour is for performance reasons, no shame in that.
In the case where enable-threads is not specified in the uwsgi config, but threads is, the LaunchDarkly client will incorrectly log the above error message.
The text was updated successfully, but these errors were encountered:
Thanks. This seems like a straightforward change. I'm currently working on setting up a test environment for it, so we can make sure we're reading the options correctly.
Right now, if you run the client in a uwsgi environment without the
enable-threads
option set, this message gets error logged:However, the uwsgi config could not have
enable-threads
explicitly set, but rather have threads implicitly enabled by setting athreads
option.In the case where
enable-threads
is not specified in the uwsgi config, butthreads
is, the LaunchDarkly client will incorrectly log the above error message.The text was updated successfully, but these errors were encountered: