From 32ce28e98e891497c4e829a2168d4e2a5176f3d0 Mon Sep 17 00:00:00 2001 From: veorlo Date: Wed, 17 Jan 2024 15:20:30 +0000 Subject: [PATCH] SCTASK0111949 Fixed bug with missing sigil in error log --- lib/GRNOC/Simp/TSDS/Pusher.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/GRNOC/Simp/TSDS/Pusher.pm b/lib/GRNOC/Simp/TSDS/Pusher.pm index f4c4388..f149c1b 100644 --- a/lib/GRNOC/Simp/TSDS/Pusher.pm +++ b/lib/GRNOC/Simp/TSDS/Pusher.pm @@ -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}; }