Skip to content

Commit

Permalink
really ignore exceptions
Browse files Browse the repository at this point in the history
  • Loading branch information
rlehfeld committed Sep 3, 2024
1 parent 966fb19 commit 7603ad8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RPyCRobotRemote/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ def _accept_method(self, sock):
"""accept method"""
try:
self._authenticate_and_serve_client(sock)
finally:
pass
except Exception as e:
self.logger.info(f'Exception during handling connection: {e!r}')


# work around problems with is_list_like and remote tuples objects
Expand Down

0 comments on commit 7603ad8

Please sign in to comment.