Recorder run can be None (#5854)
This commit is contained in:
parent
66088377e1
commit
849ae9903c
1 changed files with 2 additions and 1 deletions
|
@ -124,7 +124,8 @@ def run_information(point_in_time: Optional[datetime]=None):
|
|||
res = query(recorder_runs).filter(
|
||||
(recorder_runs.start < point_in_time) &
|
||||
(recorder_runs.end > point_in_time)).first()
|
||||
session.expunge(res)
|
||||
if res:
|
||||
session.expunge(res)
|
||||
return res
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue