We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here:
def on_tracker_reply_alert(self, alert: lt.tracker_reply_alert): self._logger.info(f'On tracker reply alert: {alert}') ...
Related to #7406.
In my opinion, the correct way to fix this class of errors is to add a safe_repr function and use it for getting alert repr:
safe_repr
def on_tracker_reply_alert(self, alert: lt.tracker_reply_alert): self._logger.info(f'On tracker reply alert: {safe_repr(alert)}') ...
The text was updated successfully, but these errors were encountered:
Sentry issue: TRIBLER-1BW
Sorry, something went wrong.
Merge pull request #7616 from kozlovsky/fix/on_tracker_reply_alert_un…
8100620
…icode_decode_error Fixes #7598: Use safe_repr function to display alert reprs; catch UnicodeDecodeError in all alert handlers
Fixed in #7616
kozlovsky
No branches or pull requests
Here:
Related to #7406.
In my opinion, the correct way to fix this class of errors is to add a
safe_repr
function and use it for getting alert repr:The text was updated successfully, but these errors were encountered: