diff options
author | Matija Čupić <matteeyah@gmail.com> | 2017-12-16 04:22:16 +0100 |
---|---|---|
committer | Matija Čupić <matteeyah@gmail.com> | 2017-12-16 04:22:16 +0100 |
commit | 935a27cfef3c5a4dd9291c21af69b41a7169817d (patch) | |
tree | 0c82a763e4298aea496508ddcb377af3dca205b1 /app/controllers | |
parent | 99043d244c4d579f27382f003df9e3243287df2a (diff) | |
download | gitlab-ce-935a27cfef3c5a4dd9291c21af69b41a7169817d.tar.gz |
Use 1 minute for status polling interval
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/projects/clusters/gcp_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/projects/clusters/gcp_controller.rb b/app/controllers/projects/clusters/gcp_controller.rb index 558dae8e228..940c2a5d84f 100644 --- a/app/controllers/projects/clusters/gcp_controller.rb +++ b/app/controllers/projects/clusters/gcp_controller.rb @@ -4,7 +4,7 @@ class Projects::Clusters::GcpController < Projects::ApplicationController before_action :authorize_google_project_billing, only: [:check] before_action :authorize_create_cluster!, only: [:new, :create] - STATUS_POLLING_INTERVAL = 10_000 + STATUS_POLLING_INTERVAL = 1.minute.to_i def login begin |