I am trying to run a topology discovery script on mininet for the purpose of my thesis, but i am repeatedly getting this eventlet error even after trying it out in different ways. Below is the code: Could anyone please help me out to fix it? This is the error i am getting
" RLock(s) were not greened, to fix this error make sure you run eventlet.monkey_patch() before importing any other modules."
import eventlet eventlet.monkey_patch()
I added these two lines as stated by chatgpt as this adds necessary modules in the eventlet library before any other modules are imported. I expected this to resolve the issue but i am still facing the same error.
-
I have the same issue but I'm running a celery task manager on Windows.whatserface– whatserface2024年02月13日 17:07:18 +00:00Commented Feb 13, 2024 at 17:07
1 Answer 1
I've changed the eventlet library to gevent and this aparently solved the issue
Comments
Explore related questions
See similar questions with these tags.