diff options
author | George Tsiolis <tsiolis.g@gmail.com> | 2018-12-21 13:17:13 +0000 |
---|---|---|
committer | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2018-12-21 13:17:13 +0000 |
commit | ac5fe450ff2af92a7b9d26b6ff51e3bba03afb95 (patch) | |
tree | 4c7dc3b773c31202e7945ef211bb41c84a24f551 /app/services | |
parent | 82772caf727e3ea59513ffff6693bab1ee37b53f (diff) | |
download | gitlab-ce-ac5fe450ff2af92a7b9d26b6ff51e3bba03afb95.tar.gz |
Rename `ClusterPlatformConfigureWorker`
Diffstat (limited to 'app/services')
-rw-r--r-- | app/services/clusters/gcp/finalize_creation_service.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/clusters/gcp/finalize_creation_service.rb b/app/services/clusters/gcp/finalize_creation_service.rb index a4e44d009c0..5525c1b9b7f 100644 --- a/app/services/clusters/gcp/finalize_creation_service.rb +++ b/app/services/clusters/gcp/finalize_creation_service.rb @@ -13,7 +13,7 @@ module Clusters configure_kubernetes cluster.save! - ClusterPlatformConfigureWorker.perform_async(cluster.id) + ClusterConfigureWorker.perform_async(cluster.id) rescue Google::Apis::ServerError, Google::Apis::ClientError, Google::Apis::AuthorizationError => e log_service_error(e.class.name, provider.id, e.message) |