(self)
| 319 | return self._connection_addr |
| 320 | |
| 321 | def get_connection_spec(self): |
| 322 | status = self.get_status() |
| 323 | if status != 'running': |
| 324 | raise ClusterError('cluster is not running') |
| 325 | |
| 326 | return self._get_connection_spec() |
| 327 | |
| 328 | def override_connection_spec(self, **kwargs): |
| 329 | self._connection_spec_override = kwargs |