diff --git a/src/ExceptionHandlingDecorator.cc b/src/ExceptionHandlingDecorator.cc index 96504ef261e2f45a9b43a8030f0c2414f5179a9f..3e78b71c1c75562f4041fb26d0c01f7bc1ff1765 100644 --- a/src/ExceptionHandlingDecorator.cc +++ b/src/ExceptionHandlingDecorator.cc @@ -35,6 +35,11 @@ namespace ChimeraTK { while(true) { try { if(!deviceModule.device.isOpened()) { + if(Application::getInstance().getLifeCycleState() != LifeCycleState::run) { + // If the application has not yet fully started, we cannot wait for the device to open. Instead just do + // nothing, since the transfer will later be repeated by the DeviceModule. + return false; + } setOwnerValidityFunction(DataValidity::faulty); Application::getInstance().testableModeUnlock("waitForDeviceOpen"); boost::this_thread::sleep(boost::posix_time::millisec(DeviceOpenTimeout));