Cleanup: Rely on top-level exception handling

This commit is contained in:
Reid 'arrdem' McKenzie 2023-07-08 19:55:54 -06:00
parent b9a2ae4274
commit c6ba7bde1f

View file

@ -80,7 +80,7 @@ def poll_printers(app: App, db: Db) -> None:
):
return True # Assume the bed is ready
status = client._post(
status: dict = client._post(
"/api/plugin/bedready",
json={
"command": "check_bed",
@ -225,7 +225,6 @@ def revoke_jobs(app: App, db: Db) -> None:
if job.printer_id:
printer = db.fetch_printer(pid=job.printer_id)
try:
log.info(f"Cancelling running job {job.id}")
client = get_client(printer.url, printer.api_key)
try:
@ -239,12 +238,6 @@ def revoke_jobs(app: App, db: Db) -> None:
log.info(f"Job {job.id} -> cancelled")
db.finish_job(jid=job.id, state="cancelled")
except TimeoutError:
pass
except Exception:
log.exception("Oop")
else:
log.info(f"Unmapped job {job.id} became cancelled")
db.finish_job(jid=job.id, state="cancelled")
@ -255,7 +248,6 @@ def pull_jobs(app: App, db: Db) -> None:
for job in db.list_running_jobs():
printer = db.fetch_printer(pid=job.printer_id)
try:
client = get_client(printer.url, printer.api_key)
job_state = client.job_info()
try:
@ -284,12 +276,6 @@ def pull_jobs(app: App, db: Db) -> None:
)
db.finish_job(jid=job.id, state="failed")
except TimeoutError:
pass
except Exception:
log.exception("Oop")
def send_emails(app, db: Db):
with closing(
@ -395,5 +381,8 @@ class Worker(Monitor):
)
def callback(self):
try:
with closing(self._db_factory(self._app)) as db:
self._callback(self._app, db)
except:
log.exception("Worker tick failed; exception swallowed")