Skip to content

Commit

Permalink
fix args
Browse files Browse the repository at this point in the history
  • Loading branch information
CamDavidsonPilon committed Nov 28, 2023
1 parent b4373cd commit 5242e0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pioreactor/background_jobs/monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ def run_job_on_machine(self, msg: MQTTMessage) -> None:
options["experiment"] = whoami._get_latest_experiment_name() # techdebt
Thread(
target=utils.boolean_retry,
args=(led_intensity, state),
args=(led_intensity, (state,)),
kwargs=options,
).start()

Expand Down

0 comments on commit 5242e0f

Please sign in to comment.