Skip to content

Commit a5f4d0e

Browse files
authored
Merge pull request #19 from instana/fix_py3.6.2_log_issue
Make sure the arg we are passing is a string
2 parents 481bf86 + 9f42539 commit a5f4d0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

instana/fsm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def get_default_gateway(self):
9090
return None
9191

9292
def check_host(self, host):
93-
l.debug("checking host", host)
93+
l.debug("checking host", str(host))
9494

9595
(_, h) = self.agent.request_header(
9696
self.agent.make_host_url(host, "/"), "GET", "Server")

0 commit comments

Comments
 (0)