summaryrefslogtreecommitdiff
path: root/lib/gitlab/prometheus_client.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/prometheus_client.rb')
-rw-r--r--lib/gitlab/prometheus_client.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/gitlab/prometheus_client.rb b/lib/gitlab/prometheus_client.rb
index 45828c77a33..06f84cc35fe 100644
--- a/lib/gitlab/prometheus_client.rb
+++ b/lib/gitlab/prometheus_client.rb
@@ -46,9 +46,9 @@ module Gitlab
path = ['api', 'v1', type].join('/')
get(path, args)
rescue JSON::ParserError
- raise PrometheusClient::Error, 'Parsing response failed'
+ raise PrometheusClient::Error, _('Parsing response failed')
rescue Errno::ECONNREFUSED
- raise PrometheusClient::Error, 'Connection refused'
+ raise PrometheusClient::Error, _('Connection refused')
end
def get(path, args)
@@ -62,10 +62,10 @@ module Gitlab
if ex.response
handle_exception_response(ex.response)
else
- raise PrometheusClient::Error, "Network connection error"
+ raise PrometheusClient::Error, _("Network connection error")
end
rescue RestClient::Exception
- raise PrometheusClient::Error, "Network connection error"
+ raise PrometheusClient::Error, _("Network connection error")
end
def handle_response(response)