Skip to content
Snippets Groups Projects
Commit da5d5300 authored by Nicolas KAROLAK's avatar Nicolas KAROLAK
Browse files

change(test_postgresql): msg style

parent 4a21b4e8
No related branches found
No related tags found
No related merge requests found
......@@ -355,10 +355,10 @@ def check_ha(db_conn: dict, errors: int = 0) -> int:
standby["port"] = 54322
status, info = check_replication(primary, standby)
if not status:
error("Cannot replicate data between primary/standby: {}".format(info))
error("Cannot replicate data between primary/standby ({})".format(info))
errors += 1
else:
success("Can replicate data between primary/standby: {}".format(info))
success("Can replicate data between primary/standby ({})".format(info))
return errors
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment