Skip to content
Snippets Groups Projects
Commit c6373732 authored by KyleKlenk's avatar KyleKlenk
Browse files

typo in create_client_config

parent 55ee523c
No related branches found
No related tags found
No related merge requests found
......@@ -15,13 +15,13 @@ def distributed_settings(hostname, port):
settings_dict = {
"DistributedSettings": {}
"Distributed_Settings": {}
}
hostname = sys.argv[1]
port = sys.argv[2]
settings_dict['DistributedSettings'] = distributed_settings(hostname, int(port))
settings_dict['Distributed_Settings'] = distributed_settings(hostname, int(port))
with open('Summa_Actors_Settings.json', 'w') as summa_actors_settings_file:
json.dump(settings_dict, summa_actors_settings_file, indent=2)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment