File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/labthings_fastapi/actions Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ def status(self) -> InvocationStatus:
116
116
``running`` Currently in-progress
117
117
``completed`` Finished without error
118
118
``cancelled`` Thread stopped after a cancel request
119
- ``error`` Exception occured in thread
119
+ ``error`` Exception occurred in thread
120
120
============== =============================================
121
121
"""
122
122
with self ._status_lock :
@@ -312,7 +312,7 @@ def expire_invocations(self):
312
312
if v .expiry_time is not None :
313
313
if v .expiry_time < datetime .datetime .now ():
314
314
to_delete .append (k )
315
- logging .info (f"Deleting invocations { to_delete } as they have expired" )
315
+ logging .debug (f"Deleting invocations { to_delete } as they have expired" )
316
316
for k in to_delete :
317
317
del self ._invocations [k ]
318
318
You can’t perform that action at this time.
0 commit comments