Skip to content

Commit 06c7352

Browse files
committed
Log exceptions do not swallow it
1 parent 8464eff commit 06c7352

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

confluent_server/confluent/config/configmanager.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -783,7 +783,8 @@ async def relay_slaved_requests(name, listener):
783783
except Exception:
784784
msg = None
785785
except Exception:
786-
pass # unexpected loss or misbehavior of the follower ends the relay
786+
# unexpected loss or misbehavior of the follower ends the relay
787+
logException()
787788
finally:
788789
try:
789790
listener.close()

0 commit comments

Comments
 (0)