Skip to content

Commit

Permalink
Merge pull request #1 from catenae/develop
Browse files Browse the repository at this point in the history
3.219.1
  • Loading branch information
brunneis authored Sep 23, 2021
2 parents 0291054 + 1cafc28 commit 63553f4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
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
2 changes: 1 addition & 1 deletion src/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=[
'stopover >= 1.214.0',
'stopover >= 1.219.1',
'orderedset ~= 2.0.3',
'falcon >= 3.0.0, < 4.0.0',
])

0 comments on commit 63553f4

Please sign in to comment.