Commit 148158a8 authored by Arturo Herrero's avatar Arturo Herrero

Fix not implemented error

> raise NotImplemented
NameError: uninitialized constant NotImplemented
parent 39e47fd5
...@@ -33,7 +33,7 @@ module PrometheusAdapter ...@@ -33,7 +33,7 @@ module PrometheusAdapter
# This is a light-weight check if a prometheus client is properly configured. # This is a light-weight check if a prometheus client is properly configured.
def configured? def configured?
raise NotImplemented raise NotImplementedError
end end
# This is a heavy-weight check if a prometheus is properly configured and accessible from GitLab. # This is a heavy-weight check if a prometheus is properly configured and accessible from GitLab.
......
...@@ -31,7 +31,7 @@ module Gitlab ...@@ -31,7 +31,7 @@ module Gitlab
private private
def fingerprint_data def fingerprint_data
raise NotImplemented raise NotImplementedError
end end
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment