Skip to content

Commit

Permalink
Fix SystemStackError when running deploy:migrate (#247)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattbrictson authored Jul 12, 2020
1 parent 7e41411 commit c2f84da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/capistrano/tasks/migrations.rake
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ namespace :load do
set :conditionally_migrate, fetch(:conditionally_migrate, false)
set :migration_role, fetch(:migration_role, :db)
set :migration_servers, -> { primary(fetch(:migration_role)) }
set :migration_command, -> { fetch(:migration_command, 'db:migrate') }
set :migration_command, fetch(:migration_command, 'db:migrate')
end
end

0 comments on commit c2f84da

Please sign in to comment.