Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-05-02 21:09:45 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-05-02 21:09:45 +0300
commitb63f3afa42a43e2a261a989f87e9ccd1e18caaa5 (patch)
tree5fc652add6f21528c9a1b06f0d4536b90d547e3c /lib
parent879372bc8cced2381df282d64608639cb063b007 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib')
-rw-r--r--lib/quality/helm3_client.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/quality/helm3_client.rb b/lib/quality/helm3_client.rb
index 28ff3ef0271..afea73cbc50 100644
--- a/lib/quality/helm3_client.rb
+++ b/lib/quality/helm3_client.rb
@@ -65,7 +65,7 @@ module Quality
%(--output json),
*args
]
- releases = Gitlab::Json.parse(run_command(command))
+ releases = JSON.parse(run_command(command))
releases.map do |release|
Release.new(*release.values_at(*RELEASE_JSON_ATTRIBUTES))