Skip to content

Commit

Permalink
Merge pull request #1416 from DataDog/yann/proxy-port-cast-fix
Browse files Browse the repository at this point in the history
[core] Cast system settings proxy port to int
  • Loading branch information
LeoCavaille committed Mar 9, 2015
2 parents 349d3a9 + f4c2ea0 commit 67ca5ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config.py
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ def get_proxy(agentConfig, use_system_settings=False):
pass
px = proxy.split(':')
proxy_settings['host'] = px[0]
proxy_settings['port'] = px[1]
proxy_settings['port'] = int(px[1])
proxy_settings['user'] = None
proxy_settings['password'] = None
proxy_settings['system_settings'] = True
Expand Down

0 comments on commit 67ca5ac

Please sign in to comment.