8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f49dde commit 4fbf51dCopy full SHA for 4fbf51d
testgres/node.py
@@ -141,11 +141,11 @@ def __init__(self):
141
super().__init__()
142
143
def reserve_port(self) -> int:
144
- raise NotImplementedError("PostManager::reserve_port is not implemented.")
+ raise NotImplementedError("PostgresNodePortManager::reserve_port is not implemented.")
145
146
def release_port(self, number: int) -> None:
147
assert type(number) == int # noqa: E721
148
- raise NotImplementedError("PostManager::release_port is not implemented.")
+ raise NotImplementedError("PostgresNodePortManager::release_port is not implemented.")
149
150
151
class PostgresNodePortManager__ThisHost(PostgresNodePortManager):
0 commit comments