Skip to content

Commit fe22815

Browse files
committed
change 2
1 parent 1373442 commit fe22815

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

rosbridge_library/src/rosbridge_library/capabilities/advertise_service.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,12 @@ async def handle_request(
6666
result = await future
6767
assert result is not None, "Service response cannot be None"
6868
return result
69+
except Exception as e:
70+
self.protocol.log(
71+
"error",
72+
f"Error while waiting for response to service request with id {request_id}: {e}",
73+
)
74+
raise
6975
finally:
7076
del self.request_futures[request_id]
7177

0 commit comments

Comments
 (0)