We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14d5c9f commit bb19089Copy full SHA for bb19089
1 file changed
smoketests/tests/replication.py
@@ -120,9 +120,9 @@ def ensure_leader_health(self, id):
120
rows = self.sql(f"select id from counter where id={id}")
121
if len(rows) < 1 or int(rows[0]['id']) != id:
122
raise ValueError(f"Could not find {id} in counter table")
123
- # Wait a tick to ensure buffers are flushed.
+ # Wait for at least one tick to ensure buffers are flushed.
124
# TODO: Replace with confirmed read.
125
- time.sleep(0.3)
+ time.sleep(0.6)
126
127
128
def fail_leader(self, action='kill'):
0 commit comments