Skip to content
Snippets Groups Projects
Commit ff3930b9 authored by Jameson Graef Rollins's avatar Jameson Graef Rollins
Browse files

followup: don't fail discovery if lal package not found

parent 5e66fd79
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,11 @@ def discover_data(event):
### first check if low-latency frames are available
logging.info("checking if data is available in /dev/shm...")
shm_segs = find_shm_segments()
try:
shm_segs = find_shm_segments()
except ImportError as e:
logging.info("unable to check /dev/shm: {}".format(e))
shm_segs = Segment()
if query_segs & shm_segs == query_segs:
shm_end_time = shm_segs[-1][1]
query_end_time = query_segment[1]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment