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
SIGTERM causes main thread to exit, atexit callbacks are triggered (OPENSSL_cleanup is among them) while another threads might concurrently call openssl functions (e.g. RAND_bytes).
It can be fixed by:
disable openssl atexit cleanup call
join all threads
While the issue doesn't do much harm, it hides real problems and produces additional noize.
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
SIGTERM causes main thread to exit, atexit callbacks are triggered (OPENSSL_cleanup is among them) while another threads might concurrently call openssl functions (e.g. RAND_bytes).
It can be fixed by:
While the issue doesn't do much harm, it hides real problems and produces additional noize.
The text was updated successfully, but these errors were encountered: