Skip to content
Snippets Groups Projects
Commit c08928a4 authored by Christoph Pohl's avatar Christoph Pohl Committed by Rainer Kartmann
Browse files

Fix wrong timestamps due to condition being always True

parent a8d168c6
No related branches found
No related tags found
No related merge requests found
Pipeline #7513 failed
......@@ -80,7 +80,7 @@ class ImageProcessor(ImageProcessorInterface, ABC):
while is_alive():
with self.cv:
self.cv.wait_for(lambda: self.image_available)
self.image_available = False
input_images, info = self._get_images_and_info()
if hasattr(self, "process_image") and callable(self.process_image):
......
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