Skip to content

Commit 86d0686

Browse files
committed
Update config.py
Fix a forgotten de-camelize
1 parent 5d95588 commit 86d0686

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def get_config(parse_args = True, cfg_path=None, init_logging=False):
109109
listen_port = 17123
110110
if config.has_option('Main','listen_port'):
111111
listen_port = config.get('Main', 'listen_port')
112-
agentConfig['ddUrl'] = "http://localhost:" + str(listen_port)
112+
agentConfig['dd_url'] = "http://localhost:" + str(listen_port)
113113
elif options is not None and options.dd_url:
114114
agentConfig['dd_url'] = options.dd_url
115115
else:

0 commit comments

Comments
 (0)