You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: Prevent exception suppression in log_latency decorator
The decorator was using 'return' statements in the finally block,
which suppressed exceptions raised in decorated methods. This caused
downloader tests to fail as exceptions (ConnectionError, TimeoutError)
were being swallowed.
Fixed by nesting telemetry logic inside an if statement instead of
using early returns, ensuring exceptions propagate correctly.
0 commit comments