summaryrefslogtreecommitdiff
path: root/app/services
diff options
context:
space:
mode:
authorAmit Rathi <amit@hypertrack.io>2018-11-13 17:38:04 +0530
committerAmit Rathi <amit@hypertrack.io>2018-11-13 17:38:04 +0530
commit6dda43d67ed3c85611f41a344c766bc6a8b95ccf (patch)
treeaeb0394f1e72328a45c1b07eae4fa0da7166fb42 /app/services
parent27ce6140433afa5b758272af204820599cf4fac4 (diff)
downloadgitlab-ce-6dda43d67ed3c85611f41a344c766bc6a8b95ccf.tar.gz
Cleanup
Diffstat (limited to 'app/services')
-rw-r--r--app/services/clusters/applications/check_installation_progress_service.rb4
-rw-r--r--app/services/clusters/applications/install_service.rb2
2 files changed, 1 insertions, 5 deletions
diff --git a/app/services/clusters/applications/check_installation_progress_service.rb b/app/services/clusters/applications/check_installation_progress_service.rb
index 8231eaa324f..19dc0478591 100644
--- a/app/services/clusters/applications/check_installation_progress_service.rb
+++ b/app/services/clusters/applications/check_installation_progress_service.rb
@@ -28,11 +28,9 @@ module Clusters
end
def on_failed
- Gitlab::AppLogger.info("Installation FAILED!!")
app.make_errored!('Installation failed')
ensure
- Gitlab::AppLogger.info("SKIP CLEARING POD!")
- # remove_installation_pod
+ remove_installation_pod
end
def check_timeout
diff --git a/app/services/clusters/applications/install_service.rb b/app/services/clusters/applications/install_service.rb
index 8c477fd14f3..5a24d78e712 100644
--- a/app/services/clusters/applications/install_service.rb
+++ b/app/services/clusters/applications/install_service.rb
@@ -4,11 +4,9 @@ module Clusters
module Applications
class InstallService < BaseHelmService
def execute
- Gitlab::AppLogger.info('---- IN execute installing ----')
return unless app.scheduled?
begin
-
app.make_installing!
helm_api.install(install_command)