Skip to content

Commit

Permalink
SCTASK0111949 Fixed bug with missing sigil in error log
Browse files Browse the repository at this point in the history
  • Loading branch information
veorlo committed Jan 29, 2024
1 parent 2bb4812 commit 32ce28e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/GRNOC/Simp/TSDS/Pusher.pm
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ sub push {
}
# Handle abnormal response formats
elsif (ref($res) ne 'HASH') {
$error = sprintf("[%s] Error: Abnormal response of type %s from push.cgi", self->worker_name, ref($res));
$error = sprintf("[%s] Error: Abnormal response of type %s from push.cgi", $self->worker_name, ref($res));
$self->logger->error($error);
return {'error' => 1, 'error_text' => $error};
}
Expand Down

0 comments on commit 32ce28e

Please sign in to comment.