Skip to content

Commit

Permalink
put
Browse files Browse the repository at this point in the history
  • Loading branch information
CamDavidsonPilon committed May 14, 2023
1 parent 29e5ec0 commit f49d6e4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pioreactor/actions/leader/execute_experiment_profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ def publish_labels_to_ui(labels_map: dict[str, str]) -> None:
encode({"unit": unit_name, "label": label}),
headers={"Content-Type": "application/json"},
)
except Exception as e:
raise e
except Exception:
pass


def execute_experiment_profile(profile_filename: str) -> None:
Expand All @@ -102,6 +102,7 @@ def execute_experiment_profile(profile_filename: str) -> None:
)

labels_to_units = {v: k for k, v in profile.labels.items()}
publish_labels_to_ui(profile.labels)

timers = []

Expand Down

0 comments on commit f49d6e4

Please sign in to comment.