From 824bd2ac11472b7a3fce9fcf3189a8e6c6048115 Mon Sep 17 00:00:00 2001 From: Oran Agra <oran@redislabs.com> Date: Tue, 4 Aug 2020 08:53:50 +0300 Subject: [PATCH] fix new rdb test failing on timing issues (#7604) apparenlty on github actions sometimes 500ms is not enough --- tests/integration/rdb.tcl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/rdb.tcl b/tests/integration/rdb.tcl index 6535cd089..9cd970350 100644 --- a/tests/integration/rdb.tcl +++ b/tests/integration/rdb.tcl @@ -139,10 +139,10 @@ start_server {} { test {bgsave resets the change counter} { r config set rdb-key-save-delay 0 r bgsave - wait_for_condition 5 100 { + wait_for_condition 50 100 { [s rdb_bgsave_in_progress] == 0 } else { - fail "bgsave not aborted" + fail "bgsave not done" } assert_equal [s rdb_changes_since_last_save] 0 }