Skip to content

Commit

Permalink
Merge branch 'branch-24.10' of github.com:nv-morpheus/Morpheus into d…
Browse files Browse the repository at this point in the history
…avid-contrib-conda-yaml-1660
  • Loading branch information
dagardner-nv committed Oct 19, 2024
2 parents b9d5e07 + 5a2d71f commit 63b9fcf
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,8 @@ def _generate_frames(self, subscription: mrc.Subscription) -> typing.Iterator[Me
# shutdown since we already returned an OK response to the client.
df = None
try:
df = self._queue.get(block=False)
# Intentionally not using self._queue_timeout here since that value is rather high
df = self._queue.get(block=False, timeout=0.1)
self._queue_size -= 1
except queue.Empty:
if (not self._http_server.is_running() or self.is_stop_requested()
Expand Down

0 comments on commit 63b9fcf

Please sign in to comment.