Skip to content

Commit

Permalink
reduce retreivals from mqtt if available in local cache
Browse files Browse the repository at this point in the history
  • Loading branch information
CamDavidsonPilon committed Nov 26, 2024
1 parent 93c8e5a commit d1bb55b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions pioreactor/utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -694,9 +694,7 @@ def kill_jobs(self, all_jobs: bool = False, **query) -> int:
count = 0

for job, pid in self._get_jobs(all_jobs, **query):
if job in self.PUMPING_JOBS:
mqtt_kill.append(job)
elif job == "led_intensity":
if job == "led_intensity":
# led_intensity doesn't register with the JobManager, probably should somehow. #502
pass
else:
Expand Down

0 comments on commit d1bb55b

Please sign in to comment.