Compare commits
2 commits
393072a9f8
...
712a1cca6a
Author | SHA1 | Date | |
---|---|---|---|
712a1cca6a | |||
037fa023f7 |
3 changed files with 8 additions and 6 deletions
|
@ -117,7 +117,7 @@ def poll_printers(app: App, db: Db) -> None:
|
|||
if mapped_job:
|
||||
db.start_job(jid=mapped_job.id)
|
||||
|
||||
elif printer_job.get("state").lower() == "connecting":
|
||||
elif printer_job.get("state", "").lower() == "connecting":
|
||||
_set_status("connecting")
|
||||
|
||||
elif printer_state.get("ready"):
|
||||
|
@ -172,7 +172,7 @@ def assign_jobs(app: App, db: Db) -> None:
|
|||
log.info(f"Mapped job {job.id} to printer {printer.id}")
|
||||
break
|
||||
else:
|
||||
print("Could not map\n", job, "\n", printer)
|
||||
log.info(f"Could not map job {job!r}")
|
||||
|
||||
|
||||
def push_jobs(app: App, db: Db) -> None:
|
||||
|
@ -307,7 +307,8 @@ def analyze_files(app: App, db: Db):
|
|||
for file in db.list_unanalyzed_files():
|
||||
p = Path(file.path)
|
||||
if not p.is_file():
|
||||
log.error(f"Invalid file {file.id}!")
|
||||
log.error(f"Deleting missing file {file.id}!")
|
||||
db.delete_file(uid=file.user_id, fid=file.id)
|
||||
continue
|
||||
|
||||
record = analyze_gcode_file(p)
|
||||
|
|
|
@ -54,3 +54,4 @@ unify
|
|||
yamllint
|
||||
yaspin
|
||||
pytimeparse
|
||||
git+https://github.com/arrdem/jaraco.text.git@0dd8d0b25a93c3fad896f3a92d11caff61ff273d#egg=jaraco.text
|
||||
|
|
|
@ -42,7 +42,7 @@ itsdangerous==2.1.2
|
|||
jaraco.collections==4.3.0
|
||||
jaraco.context==4.3.0
|
||||
jaraco.functools==3.8.0
|
||||
jaraco.text==3.11.1
|
||||
jaraco.text @ git+https://github.com/arrdem/jaraco.text.git@0dd8d0b25a93c3fad896f3a92d11caff61ff273d
|
||||
jedi==0.18.2
|
||||
Jinja2==3.1.2
|
||||
jsonschema==4.18.4
|
||||
|
|
Loading…
Reference in a new issue