Class: Ey::Core::Cli::Web::Enable

Inherits:
Subcommand
  • Object
show all
Defined in:
lib/ey-core/cli/web/enable.rb

Instance Method Summary collapse

Methods inherited from Subcommand

#handle_core_error, #run_handle, #setup

Methods included from Helpers::Core

#core_account, #core_accounts, #core_application_for, #core_applications, #core_client, #core_environment_for, #core_environment_variables, #core_environments, #core_operator_and_environment_for, #core_server_for, #core_url, #core_yaml, #eyrc_yaml, included, #longest_length_by_name, #operator, #unauthenticated_core_client, #write_core_yaml

Instance Method Details

#handleObject



29
30
31
32
33
34
35
36
37
38
39
40
41
# File 'lib/ey-core/cli/web/enable.rb', line 29

def handle
  operator, environment = core_operator_and_environment_for(self.options)
  application           = core_application_for(environment, options)
  puts "Disabling maintenance for #{application.name} on #{environment.name}".green
  request = environment.maintenance(application, "disable")
  request.wait_for { |r| r.ready? }
  if request.successful
    puts "Successfully disabled maintenance page".green
  else
    puts "Disabling maintenance mode was not successful".red
    ap request
  end
end