|
18 | 18 | from .exceptions import \ |
19 | 19 | TestgresException, \ |
20 | 20 | ExecUtilException, \ |
| 21 | + ExecTimeoutException, \ |
21 | 22 | QueryException, \ |
22 | 23 | QueryTimeoutException, \ |
23 | 24 | TimeoutException, \ |
|
53 | 54 |
|
54 | 55 | from .config import testgres_config |
55 | 56 |
|
56 | | -from testgres.operations.os_ops import OsOperations, ConnectionParams |
| 57 | +from testgres.operations.os_ops import OsOperations |
| 58 | +from testgres.operations.os_ops import ConnectionParams |
| 59 | +from testgres.operations.os_ops import OsProcessController |
57 | 60 | from testgres.operations.local_ops import LocalOperations |
58 | 61 | from testgres.operations.remote_ops import RemoteOperations |
59 | 62 |
|
|
66 | 69 | "TestgresConfig", "configure_testgres", "scoped_config", "push_config", "pop_config", |
67 | 70 | "NodeConnection", "DatabaseError", "InternalError", "ProgrammingError", "OperationalError", |
68 | 71 | "TestgresException", "ExecUtilException", "QueryException", |
| 72 | + "ExecTimeoutException", |
69 | 73 | "QueryTimeoutException", |
70 | 74 | "TimeoutException", "CatchUpException", "StartNodeException", "InitNodeException", "BackupException", "InvalidOperationException", |
71 | 75 | "XLogMethod", "IsolationLevel", "NodeStatus", "ProcessType", "DumpFormat", |
|
74 | 78 | "PortManager", |
75 | 79 | "reserve_port", "release_port", "get_bin_path", "get_bin_dir", "get_pg_config", "get_pg_version", "parse_pg_version", |
76 | 80 | "First", "Any", |
77 | | - "OsOperations", "LocalOperations", "RemoteOperations", "ConnectionParams" |
| 81 | + "OsOperations", "LocalOperations", "RemoteOperations", "ConnectionParams", |
| 82 | + "OsProcessController", |
78 | 83 | ] |
0 commit comments