Skip to content

Commit

Permalink
Cluster failed to start: __init__() got an unexpected keyword argumen…
Browse files Browse the repository at this point in the history
…t 'external_address'
  • Loading branch information
oshadura committed Nov 22, 2023
1 parent 53497e3 commit a8285f4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions coffea_casa/coffea_casa.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,8 @@ def _modify_job_kwargs(cls,
address_list = [external_ip, DEFAULT_SCHEDULER_PORT]
external_address_short = ":".join(str(item) for item in address_list)
full_address_list = [scheduler_protocol, external_address_short]
external_address = "".join(str(item) for item in full_address_list)
external_ip_string = '"' + external_address + '"'
contact_address = "".join(str(item) for item in full_address_list)
external_ip_string = '"' + contact_address + '"'
# HTCondor logging
job_config["log_directory"] = "logs"
job_config["silence_logs"] = "DEBUG"
Expand All @@ -180,7 +180,7 @@ def _modify_job_kwargs(cls,
"port": scheduler_port,
"dashboard_address": str(dashboard_port),
"protocol": scheduler_protocol.replace("://", ""),
"external_address": external_address,
"contact_address": contact_address,
},
job_kwargs.get(
"scheduler_options",
Expand Down

0 comments on commit a8285f4

Please sign in to comment.