Skip to content

Commit

Permalink
Fix colored() usage in clickhouse-test
Browse files Browse the repository at this point in the history
  • Loading branch information
azat committed Jan 26, 2021
1 parent e8dedbf commit c4454ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/clickhouse-test
Original file line number Diff line number Diff line change
Expand Up @@ -777,7 +777,7 @@ def main(args):
print(colored("\nFound hung queries in processlist:", args, "red", attrs=["bold"]))
print(processlist)
else:
print(colored("Seems like server hung and cannot respond to queries", "red", attrs=["bold"]))
print(colored("Seems like server hung and cannot respond to queries", args, "red", attrs=["bold"]))

clickhouse_tcp_port = os.getenv("CLICKHOUSE_PORT_TCP", '9000')
server_pid = get_server_pid(clickhouse_tcp_port)
Expand Down

0 comments on commit c4454ab

Please sign in to comment.