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
Hi,
I currently working on rollbar with multiprocessing but encounters a problem.
POC here:
import rollbar
from multiprocessing import Process
def test():
rollbar.init("<post_server_token_here>")
print(rollbar.report_message("foo"))
if __name__ == "__main__":
p = Process(target=test)
p.start()
p.join()
When executing script with various python version, only python3.9 is working (Item created on rollbar dashboard)
❯ python2.7 a.py
ba97cff1-b03c-4eb7-a0c9-f7e4fcb5dfe1
❯ python3.6 a.py
WARNING:rollbar.lib._async:Python3.6 does not provide the `contextvars` module. Some advanced features may not work as expected. Please upgrade Python or install `aiocontextvars`.
75866ec2-b84b-4828-9339-152d4894b6d9
❯ python3.9 a.py
ac109c6a-c207-4b77-b192-5500a3109d4a
Rollbar Dashboard:
The text was updated successfully, but these errors were encountered:
Hi @racterub thank you for bringing this to our attention with all the details and helpful context. The POC and results give a very clear representation of what is going on. Would you be willing to add a test and update the codebase, or would you like me to do that?
Hi,
I currently working on rollbar with multiprocessing but encounters a problem.
POC here:
When executing script with various python version, only python3.9 is working (Item created on rollbar dashboard)
Rollbar Dashboard:
The text was updated successfully, but these errors were encountered: