Skip to content

Commit

Permalink
Update distributed.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew-S-Rosen authored Mar 4, 2024
1 parent 52508ac commit 844b309
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/maggma/cli/distributed.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def manager(url: str, port: int, builders: List[Builder], num_chunks: int, num_w
if not chunk_dict["distributed"]:
temp_builder_dict = dict(**builder_dict)
temp_builder_dict.update(chunk_dict["chunk"]) # type: ignore
temp_builder_dict = jsanitize(temp_builder_dict)
temp_builder_dict = jsanitize(temp_builder_dict, recursive_msonable=True)

# Send work for available workers
for identity in workers:
Expand Down

0 comments on commit 844b309

Please sign in to comment.