You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test_runner/regress/test_logical_replication.py:317: in test_lr_with_slow_safekeeper
assert [r[0] for r in vanilla_pg.safe_psql("select * from t")] == [1]
E assert [] == [1]
E Right contains one more item: 1
E Full diff:
E - [1]
E ? -
E + []
pgdata-vanilla/pg.log:
2024-12-24 21:29:09.658 UTC [92514] LOG: logical replication apply worker for subscription "sub1" has started
2024-12-24 21:29:09.666 UTC [92226] LOG: received fast shutdown request
2024-12-24 21:29:09.666 UTC [92576] LOG: logical replication table synchronization worker for subscription "sub1", table "t" has started
2024-12-24 21:29:09.666 UTC [92226] LOG: aborting any active transactions
2024-12-24 21:29:09.666 UTC [92576] FATAL: terminating logical replication worker due to administrator command
test_runner/regress/test_logical_replication.py:317: in test_lr_with_slow_safekeeper
assert [r[0] for r in vanilla_pg.safe_psql("select * from t")] == [1]
E assert [] == [1]
E Right contains one more item: 1
E Full diff:
E - [1]
E ? -
E + []
pgdata-vanilla/pg.log:
2024-12-24 21:29:04.111 UTC [88099] LOG: logical replication apply worker for subscription "sub1" has started
2024-12-24 21:29:04.123 UTC [88067] LOG: received fast shutdown request
2024-12-24 21:29:04.126 UTC [88067] LOG: aborting any active transactions
2024-12-24 21:29:04.126 UTC [88099] FATAL: terminating logical replication worker due to administrator command
show that the logical_replication_sync call in the test:
Multiple failures of test_lr_with_slow_safekeeper, e.g.:
https://neon-github-public-dev.s3.amazonaws.com/reports/pr-10238/12486246775/index.html#/testresult/455c25d1ecd98aac
with the following diagnostics:
pgdata-vanilla/pg.log:
Or https://neon-github-public-dev.s3.amazonaws.com/reports/pr-10238/12486246775/index.html#/testresult/4efed0c5fa7cc95b
pgdata-vanilla/pg.log:
show that the logical_replication_sync call in the test:
doesn't wait for the table synchronization to finish. On a successful run, pg.log contains:
This test failure can be easily reproduced with a sleep added inside TablesyncWorkerMain():
The text was updated successfully, but these errors were encountered: