Recorder run can be None (#5854)

pull/5833/head
Paulus Schoutsen 2017-02-10 12:55:59 -08:00
parent 66088377e1
commit 849ae9903c
1 changed files with 2 additions and 1 deletions

View File

@ -124,6 +124,7 @@ 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()
if res:
session.expunge(res)
return res