Skip to content
Snippets Groups Projects
Commit 03b39d06 authored by Robert Marshall's avatar Robert Marshall
Browse files

Invoke die method from proper scope

- Static method `die` is not able to be invoked as if it were an
  instance method. Prefix it with the class name.

Resolves https://gitlab.com/gitlab-org/omnibus-gitlab/issues/4611



Signed-off-by: default avatarRobert Marshall <rmarshall@gitlab.com>
parent cd9c7175
No related branches found
No related tags found
No related merge requests found
---
title: Invoke die method from proper scope
merge_request: 3604
author:
type: fixed
......@@ -109,7 +109,7 @@
false
end
end
die 'Error upgrading the database'
GitlabCtl::PgUpgrade.die 'Error upgrading the database'
end
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment