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
diff options
context:
space:
mode:
authorKamil Trzcinski <ayufan@ayufan.eu>2017-11-03 11:22:11 +0300
committerKamil Trzcinski <ayufan@ayufan.eu>2017-11-03 11:22:11 +0300
commit4477f7bb5925d8d720e3e8272bd882fffcc04b28 (patch)
tree873fe5da1a1705946f7a9cc298d16ee0a905dbaa /app/services
parent4d0a700da09be50291e40a11975b56f74051405b (diff)
Fix nitpicks
Diffstat (limited to 'app/services')
-rw-r--r--app/services/clusters/base_helm_service.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/clusters/base_helm_service.rb b/app/services/clusters/base_helm_service.rb
index dd717a0bb58..0a95955a204 100644
--- a/app/services/clusters/base_helm_service.rb
+++ b/app/services/clusters/base_helm_service.rb
@@ -17,7 +17,7 @@ module Clusters
end
def helm_api
- @helm ||= Gitlab::Kubernetes::Helm.new(kubeclient)
+ @helm_api ||= Gitlab::Kubernetes::Helm.new(kubeclient)
end
end
end