(self)
| 21 | stopping: bool |
| 22 | |
| 23 | def __init__(self): |
| 24 | self.channel = None |
| 25 | self.stopping = False |
| 26 | self.create_consumers() |
| 27 | |
| 28 | def on_channel_open(self, channel): |
| 29 | logger.info('Connection opened') |
nothing calls this directly
no test coverage detected