File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -716,7 +716,7 @@ def dbconfig_keyspacelen_check(
716
716
attempt = 0
717
717
while time .time () - start_time < timeout :
718
718
logging .info (
719
- f"Ensuring keyspace length requirement = { keyspacelen } is met. attempt #{ attempt + 1 } "
719
+ f"Ensuring keyspace length requirement = { keyspacelen } is met. attempt #{ attempt + 1 } "
720
720
)
721
721
total_keys = 0
722
722
for shard_conn in redis_conns :
@@ -741,12 +741,12 @@ def dbconfig_keyspacelen_check(
741
741
attempt += 1
742
742
743
743
logging .error (
744
- f"The total number of keys in setup does not match the expected spec: { keyspacelen } != { total_keys } . Aborting after { attempt + 1 } tries..."
744
+ f"The total number of keys in setup does not match the expected spec: { keyspacelen } != { total_keys } . Aborting after { attempt + 1 } tries..."
745
745
)
746
746
747
747
if not ignore_keyspace_errors :
748
748
raise Exception (
749
- f"The total number of keys in setup does not match the expected spec: { keyspacelen } != { total_keys } . Aborting after { attempt + 1 } tries..."
749
+ f"The total number of keys in setup does not match the expected spec: { keyspacelen } != { total_keys } . Aborting after { attempt + 1 } tries..."
750
750
)
751
751
752
752
return False
You can’t perform that action at this time.
0 commit comments