Skip to content

Commit 2f5cba5

Browse files
fix: PostgresNode.catchup is corrected (#344)
CatchUpException is used incorrectly.
1 parent 4e6ae8a commit 2f5cba5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/node.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1809,7 +1809,7 @@ def catchup(self, dbname=None, username=None):
18091809
username=username,
18101810
max_attempts=0) # infinite
18111811
except Exception as e:
1812-
raise_from(CatchUpException("Failed to catch up", poll_lsn), e)
1812+
raise_from(CatchUpException("Failed to catch up."), e)
18131813

18141814
def publish(self, name, **kwargs):
18151815
"""

0 commit comments

Comments
 (0)