mirror of
https://github.com/neondatabase/neon.git
synced 2026-05-30 11:30:37 +00:00
test: test_timeline_ancestor_detach_errors rare allowed_error (#8782)
Add another allowed_error for this rarity. Fixes: #8773
This commit is contained in:
@@ -639,8 +639,12 @@ def test_timeline_ancestor_detach_errors(neon_env_builder: NeonEnvBuilder, shard
|
||||
|
||||
for ps in pageservers.values():
|
||||
ps.allowed_errors.extend(SHUTDOWN_ALLOWED_ERRORS)
|
||||
ps.allowed_errors.append(
|
||||
".* WARN .* path=/v1/tenant/.*/timeline/.*/detach_ancestor request_id=.*: request was dropped before completing"
|
||||
ps.allowed_errors.extend(
|
||||
[
|
||||
".* WARN .* path=/v1/tenant/.*/timeline/.*/detach_ancestor request_id=.*: request was dropped before completing",
|
||||
# rare error logging, which is hard to reproduce without instrumenting responding with random sleep
|
||||
'.* ERROR .* path=/v1/tenant/.*/timeline/.*/detach_ancestor request_id=.*: Cancelled request finished with an error: Conflict\\("no ancestors"\\)',
|
||||
]
|
||||
)
|
||||
|
||||
client = (
|
||||
|
||||
Reference in New Issue
Block a user