2016-10-01 1 views
5

Capistrano를 통해 서버에 Rails 앱을 배포하려고했습니다. 이 그래서 내가 도망 모든 것이 원활하게 내 사이트가 성공적으로 배포 할 수 있습니다 작동하지만 난 그 후 메시지를 가지고 '캡 제작 배포'deploy.rb`puma : restart '가 두 번 호출되지만 Capistrano를 통해 내 배포 앱에서만 한 번만 호출합니까?

set :repo_url,  '[email protected]:varisdaOfficial/insurance_site.git' 
set :application,  'insurance_code' 
set :user,   'deploy' 
set :puma_threads, [4, 16] 
set :puma_workers, 0 

set :pty,    true 
set :use_sudo,  false 
set :stage,   :production 
set :deploy_via,  :remote_cache 
set :deploy_to,  "/home/#{fetch(:user)}/apps/#{fetch(:application)}" 
set :puma_bind,  "unix://#{shared_path}/tmp/sockets/#{fetch(:application)}-puma.sock" 
set :puma_state,  "#{shared_path}/tmp/pids/puma.state" 
set :puma_pid,  "#{shared_path}/tmp/pids/puma.pid" 
set :puma_access_log, "#{release_path}/log/puma.error.log" 
set :puma_error_log, "#{release_path}/log/puma.access.log" 
set :ssh_options,  { forward_agent: true, user: fetch(:user), keys: %w(~/.ssh/id_rsa.pub) } 
set :puma_preload_app, true 
set :puma_worker_timeout, nil 
set :puma_init_active_record, true # Change to false when not using ActiveRecord 
set :linked_dirs, %w(public/uploads) 

namespace :puma do 
    desc 'Create Directories for Puma Pids and Socket' 
    task :make_dirs do 
    on roles(:app) do 
     execute "mkdir #{shared_path}/tmp/sockets -p" 
     execute "mkdir #{shared_path}/tmp/pids -p" 
    end 
    end 

    before :start, :make_dirs 
end 

namespace :deploy do 
    desc "Make sure local git is in sync with remote." 
    task :check_revision do 
    on roles(:app) do 
     unless `git rev-parse HEAD` == `git rev-parse origin/master` 
     puts "WARNING: HEAD is not the same as origin/master" 
     puts "Run `git push` to sync changes." 
     exit 
     end 
    end 
    end 

    desc 'Initial Deploy' 
    task :initial do 
    on roles(:app) do 
     before 'deploy:restart', 'puma:start' 
     invoke 'deploy' 
    end 
    end 

    desc 'Restart application' 
    task :restart do 
    on roles(:app), in: :sequence, wait: 5 do 
     invoke 'puma:restart' 
    end 
    end 

    desc 'clear temp cache' 
    task :clear_cache do 
    on roles(:app) , in: :sequence, wait: 1 do 
     execute "rm -rf #{shared_path}/tmp/cache/[^.]*" 

    end 
    end 

    before :starting,  :check_revision 
    after :finishing, :compile_assets 
    after :finishing, :cleanup 
    after :finishing, :clear_cache 
    after :finishing, :restart 
end 

에 내 코드입니다.

Capistrano tasks may only be invoked once. Since task `puma:restart' was previously invoked, 
invoke("puma:restart") at/Users/manjarb/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/capistrano3-puma-1.2.1/lib/capistrano/tasks/puma.rake:134 will be skipped. 
If you really meant to run this task again, first call Rake::Task["puma:restart"].reenable 
THIS BEHAVIOR MAY CHANGE IN A FUTURE VERSION OF CAPISTRANO. Please join the conversation here if this affects you. 
https://github.com/capistrano/capistrano/issues/1686 

난 단지 재시작 작업을 한 번만 호출합니다. 어떻게이 메시지를 해결할 수 있습니까?

감사합니다.

답변

15

나는 capistrano3-puma 보석을 사용하고 있다고 가정합니다. 그 보석은 성공적인 전개가 끝나면 자동으로 푸마를 다시 시작합니다. 재시작 작업이 처음으로 호출됩니다.

또한 deploy.rb에서 사용자 지정 다시 시작 작업을 정의했으며이 작업을 after :finishing이라고합니다. 그것이 두 번째 호출의 소스이며, 따라서 경고입니다.

는이 문제를 "해결"중복 작업 제거하려면 다음

desc 'Restart application' 
task :restart do 
    on roles(:app), in: :sequence, wait: 5 do 
    invoke 'puma:restart' 
    end 
end 

을 그리고 이것을 제거 :

after :finishing, :restart 
+1

매트의 대답은 바로 하나입니다. 그러나 카피 스트라 노 작업이 두 번 실행되는 사람들에게는 invoke를 사용하여 작업을 호출 할 수 있습니다! 대신. –

관련 문제