Log 'message' at INFO level, prefixed wih the protocol name of this connection.
(self, message)
| 310 | LOG.info(u"{0}: {1}".format(handle_id, message)) |
| 311 | |
| 312 | def log_client(self, message): |
| 313 | """Log 'message' at INFO level, prefixed wih the protocol name of this connection.""" |
| 314 | LOG.info(u"{0}: {1}".format(self.get_test_protocol(), message)) |
| 315 | |
| 316 | def wait_for_impala_state(self, operation_handle, expected_impala_state, timeout): |
| 317 | """Waits for the given 'operation_handle' to reach the 'expected_impala_state'. |