Commit ee5157b0 authored by Sean Arnold's avatar Sean Arnold

Use strong memoization

parent 96eb1301
...@@ -104,7 +104,9 @@ module AlertManagement ...@@ -104,7 +104,9 @@ module AlertManagement
end end
def am_alert def am_alert
@am_alert ||= AlertManagement::Alert.not_resolved.for_fingerprint(project, gitlab_fingerprint).first strong_memoize(:am_alert) do
AlertManagement::Alert.not_resolved.for_fingerprint(project, gitlab_fingerprint).first
end
end end
def bad_request def bad_request
......
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