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
Hello,
I tried to use this module with eventlet. But it hangs when calling mgzip.compress() after eventlet.monkey_patch().
mgzip.compress()
eventlet.monkey_patch()
When killing the process with SIGINT (Ctrl+C), many thread seems to be running (Over 50 threads).
Is this a known behavior?
Here's a minimized code to reproduce this.
import eventlet eventlet.monkey_patch() import mgzip s = b"a big string..." c = mgzip.compress(s)
The text was updated successfully, but these errors were encountered:
Can you try with https://github.com/pgzip/pgzip and if you still have the issue, please raise an issue there.
Sorry, something went wrong.
No branches or pull requests
Hello,
I tried to use this module with eventlet.
But it hangs when calling
mgzip.compress()
aftereventlet.monkey_patch()
.When killing the process with SIGINT (Ctrl+C), many thread seems to be running (Over 50 threads).
Is this a known behavior?
Here's a minimized code to reproduce this.
The text was updated successfully, but these errors were encountered: