Skip to content

Commit be66d8c

Browse files
authored
Fix kikimr_runner.py compatibility with py2 (#20796)
1 parent a077390 commit be66d8c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ydb/tests/library/harness/kikimr_runner.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -458,9 +458,9 @@ def _bootstrap_cluster(self, self_assembly_uuid="test-cluster", timeout=30, inte
458458
logger.info("Successfully bootstrapped cluster")
459459
return result
460460
else:
461-
error_msg = f"Bootstrap cluster failed with status: {result.operation.status}"
461+
error_msg = "Bootstrap cluster failed with status: %s" % (result.operation.status, )
462462
for issue in result.operation.issues:
463-
error_msg += f"\nIssue: {issue}"
463+
error_msg += "\nIssue: %s" % (issue, )
464464
raise Exception(error_msg)
465465

466466
except Exception as e:

0 commit comments

Comments
 (0)