Method
__init__
(self, *,
data_dir_suffix=None, data_dir_prefix=None,
data_dir_parent=None, pg_config_path=None)
Source from the content-addressed store, hash-verified
| 622 | |
| 623 | class TempCluster(Cluster): |
| 624 | def __init__(self, *, |
| 625 | data_dir_suffix=None, data_dir_prefix=None, |
| 626 | data_dir_parent=None, pg_config_path=None): |
| 627 | self._data_dir = _mkdtemp(suffix=data_dir_suffix, |
| 628 | prefix=data_dir_prefix, |
| 629 | dir=data_dir_parent) |
| 630 | super().__init__(self._data_dir, pg_config_path=pg_config_path) |
| 631 | |
| 632 | |
| 633 | class HotStandbyCluster(TempCluster): |
Callers
nothing calls this directly
Tested by
no test coverage detected