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 678c52d commit 04af970Copy full SHA for 04af970
tests/integration/test_backup_restore_new/test_cancel_backup.py
@@ -105,7 +105,13 @@ def cancel_backup(backup_id):
105
f"SELECT query_duration_ms FROM system.query_log WHERE query_kind='KillQuery' AND query LIKE '%{backup_id}%' AND type='QueryFinish'"
106
)
107
108
- assert kill_duration_ms < 2000 # Query must be cancelled quickly
+ # Common failures in CI with 2000:
109
+ # E assert 2520 < 2000
110
+ # E assert 2210 < 2000
111
+ # E assert 2160 < 2000
112
+ # E assert 2143 < 2000
113
+ # E assert 2495 < 2000
114
+ assert kill_duration_ms < 4000 # Query must be cancelled quickly
115
116
117
# Start restoring from a backup.
0 commit comments