(self, Consumer, channel)
| 80 | } |
| 81 | |
| 82 | def get_consumers(self, Consumer, channel): |
| 83 | return [ |
| 84 | Consumer( |
| 85 | queues=[self._trigger_watch_q], |
| 86 | accept=["pickle"], |
| 87 | callbacks=[self.process_task], |
| 88 | ) |
| 89 | ] |
| 90 | |
| 91 | def process_task(self, body, message): |
| 92 | LOG.debug("process_task") |
nothing calls this directly
no outgoing calls
no test coverage detected