(self, command, **kwargs)
| 103 | return by_node |
| 104 | |
| 105 | def _request(self, command, **kwargs): |
| 106 | return self._prepare(self.app.control.broadcast( |
| 107 | command, |
| 108 | arguments=kwargs, |
| 109 | destination=self.destination, |
| 110 | callback=self.callback, |
| 111 | connection=self.connection, |
| 112 | limit=self.limit, |
| 113 | timeout=self.timeout, reply=True, |
| 114 | pattern=self.pattern, matcher=self.matcher, |
| 115 | )) |
| 116 | |
| 117 | def report(self): |
| 118 | """Return human readable report for each worker. |
no test coverage detected