Skip to content
New issue

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

[Whitespace] Add extra logging to Whitespace call method #4958

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

chrismytton
Copy link
Member

We're seeing some 400 errors from Whitespace, so this should help us pin down which method call is causing those errors.

Copy link

codecov bot commented May 14, 2024

Codecov Report

Attention: Patch coverage is 50.00000% with 1 lines in your changes are missing coverage. Please review.

Project coverage is 82.59%. Comparing base (3727f42) to head (b914588).

Files Patch % Lines
perllib/Integrations/Whitespace.pm 50.00% 1 Missing ⚠️
Additional details and impacted files
@@           Coverage Diff           @@
##           master    #4958   +/-   ##
=======================================
  Coverage   82.59%   82.59%           
=======================================
  Files         393      393           
  Lines       30653    30655    +2     
  Branches     4846     4846           
=======================================
+ Hits        25319    25321    +2     
- Misses       3891     3892    +1     
+ Partials     1443     1442    -1     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@chrismytton chrismytton requested a review from dracos May 14, 2024 09:06
Copy link
Member

@dracos dracos left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

One query about logging the response

@@ -34,7 +36,12 @@ has endpoint => (
soapversion => 1.1,
proxy => $self->url,
default_ns => $self->attr,
on_action => sub { $self->attr . $_[1] }
on_action => sub { $self->attr . $_[1] },
on_fault => sub {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looking at open311-adapter, it looks like $res might not be an object sometimes (at least they always check there), don't know if that can happen here or not. Also the default in SOAP::Lite appears to return $res rather than die, not sure if that matters either.
Instead of this, could we perhaps add the logging where it says "TODO: Better error handling" - that should always get a response, success or failure, I think, so you could log any failure there?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants