Skip to content

Commit

Permalink
cluster from_name bugfix (#468)
Browse files Browse the repository at this point in the history
Co-authored-by: Alexandra Belousov <sashabelousovrh@Alexandras-MacBook-Pro.local>
  • Loading branch information
BelSasha and Alexandra Belousov authored Feb 13, 2024
1 parent e55b4b5 commit 08b50c2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions runhouse/resources/hardware/cluster_factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,7 @@ def cluster(
ssl_keyfile=ssl_keyfile,
ssl_certfile=ssl_certfile,
domain=domain,
den_auth=den_auth,
kwargs=kwargs,
kwargs=kwargs if len(kwargs) > 0 else None,
)
# Filter out None/default values
alt_options = {k: v for k, v in alt_options.items() if v is not None}
Expand Down

0 comments on commit 08b50c2

Please sign in to comment.