summaryrefslogtreecommitdiff
path: root/app/services/clusters/applications/install_service.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/services/clusters/applications/install_service.rb')
-rw-r--r--app/services/clusters/applications/install_service.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/services/clusters/applications/install_service.rb b/app/services/clusters/applications/install_service.rb
index 4c25a09814b..7ec3a9baa6e 100644
--- a/app/services/clusters/applications/install_service.rb
+++ b/app/services/clusters/applications/install_service.rb
@@ -12,8 +12,8 @@ module Clusters
ClusterWaitForAppInstallationWorker::INTERVAL, app.name, app.id)
rescue Kubeclient::HttpError => ke
app.make_errored!("Kubernetes error: #{ke.message}")
- rescue StandardError
- app.make_errored!("Can't start installation process")
+ rescue StandardError => e
+ app.make_errored!("Can't start installation process. #{e.message}")
end
end
end