Skip to content

Commit

Permalink
rpc bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
brunneis committed Sep 23, 2021
1 parent 39c4275 commit 1cafc28
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/catenae/catenae.py
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,12 @@ def _transform(self):
def _rpc_notify_handler(self):
no_messages = True
for input_stream in self.config['rpc_topics']:
message = self.stopover.get(input_stream, self.uid)
message = None
try:
message = self.stopover.get(input_stream, self.uid)
except Exception:
pass

if not message:
continue

Expand Down

0 comments on commit 1cafc28

Please sign in to comment.