Skip to content

Commit

Permalink
fix error where the traceback doesnt work
Browse files Browse the repository at this point in the history
  • Loading branch information
eedgar authored and adejanovski committed Apr 7, 2020
1 parent d72bb9e commit ec80539
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cstar/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def get_cluster_topology(self, seed_nodes):
if count >= MAX_ATTEMPTS:
break
raise HostIsDown("Could not find any working host while fetching topology. Is Cassandra actually running? Tried the following hosts:",
", ".join(tried_hosts))
", ".join([x.ip for x in tried_hosts]))

def reverse_dns_preheat(self, ips):
if self.is_preheated:
Expand Down

0 comments on commit ec80539

Please sign in to comment.