()
| 389 | |
| 390 | |
| 391 | def _is_gevent_monkey_patched(): |
| 392 | try: |
| 393 | import gevent.monkey |
| 394 | return gevent.monkey.is_module_patched('threading') |
| 395 | except Exception: |
| 396 | return False |
| 397 | |
| 398 | |
| 399 | def _is_celery_worker_context(): |
no outgoing calls
no test coverage detected