Skip to content

Instantly share code, notes, and snippets.

View JohnSundarraj's full-sized avatar
🇮🇳
Proud Tamil speaking Indian.

John Sundarraj JohnSundarraj

🇮🇳
Proud Tamil speaking Indian.
View GitHub Profile
from __future__ import absolute_import
import signal
import gevent
import gevent.pool
from rq import Worker
from rq.timeouts import BaseDeathPenalty, JobTimeoutException
from rq.worker import StopRequested, green, blue
from rq.exceptions import DequeueTimeout
@lechup
lechup / gevent_rqworker.py
Last active January 27, 2023 13:52
GeventWorker class to use with rq. All credits to https://github.com/jhorman from https://github.com/nvie/rq/issues/303#issuecomment-45304465 comment.
from __future__ import absolute_import
import signal
import gevent
import gevent.pool
from rq import Worker
from rq.timeouts import BaseDeathPenalty, JobTimeoutException
from rq.worker import StopRequested, green, blue
from rq.exceptions import DequeueTimeout