Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Wrede committed Sep 23, 2024
1 parent 548833d commit a9092a1
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions fedn/network/clients/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,17 @@ def __init__(self, config):
if config["proxy_server"]:
combiner_config["fqdn"] = config["proxy_server"]
else:
self.connector = ConnectorClient(
host=config["discover_host"],
port=config["discover_port"],
token=config["token"],
name=config["name"],
remote_package=config["remote_compute_context"],
force_ssl=config["force_ssl"],
verify=config["verify"],
combiner=config["preferred_combiner"],
id=self.id,
)
combiner_config = self.assign()
self.connect(combiner_config)

Expand Down

0 comments on commit a9092a1

Please sign in to comment.