(self, attr_name, value)
| 3463 | return self._pools.values() |
| 3464 | |
| 3465 | def _validate_set_legacy_config(self, attr_name, value): |
| 3466 | if self.cluster._config_mode == _ConfigMode.PROFILES: |
| 3467 | raise ValueError("Cannot set Session.%s while using Configuration Profiles. Set this in a profile instead." % (attr_name,)) |
| 3468 | setattr(self, '_' + attr_name, value) |
| 3469 | self.cluster._config_mode = _ConfigMode.LEGACY |
| 3470 | |
| 3471 | |
| 3472 | class UserTypeDoesNotExist(Exception): |
no outgoing calls
no test coverage detected