improve sdr failure detection

This commit is contained in:
Jakob Ketterl
2019-12-21 23:29:56 +01:00
parent b5c5bcb9f1
commit 4d0d316fdd
3 changed files with 8 additions and 4 deletions

View File

@ -190,7 +190,11 @@ class SdrSource(object):
if not available:
self.failed = True
self.postStart()
try:
self.postStart()
except Exception:
logger.exception("Exception during postStart()")
self.failed = True
self.modificationLock.release()