diff options
Diffstat (limited to 'perllib/Open311.pm')
-rw-r--r-- | perllib/Open311.pm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/perllib/Open311.pm b/perllib/Open311.pm index 0b44575db..c1323acfa 100644 --- a/perllib/Open311.pm +++ b/perllib/Open311.pm @@ -83,10 +83,10 @@ sub send_service_request { } warn sprintf( "Failed to submit problem %s over Open311, response\n: %s\n%s", $problem->id, $response, $self->debug_details ) - unless $problem->send_fail_count; + if $problem->send_fail_count && $problem->send_fail_count == 2; } else { warn sprintf( "Failed to submit problem %s over Open311, details:\n%s", $problem->id, $self->error) - unless $problem->send_fail_count; + if $problem->send_fail_count && $problem->send_fail_count == 2; } return 0; } @@ -259,10 +259,10 @@ sub post_service_request_update { } warn sprintf( "Failed to submit comment %s over Open311, response - %s\n%s\n", $comment->id, $response, $self->debug_details ) - unless $comment->send_fail_count; + if $comment->send_fail_count && $comment->send_fail_count == 2; } else { warn sprintf( "Failed to submit comment %s over Open311, details\n%s\n", $comment->id, $self->error) - unless $comment->send_fail_count; + if $comment->send_fail_count && $comment->send_fail_count == 2; } return 0; } |