Skip to content

Commit c2f84da

Browse files
authored
Fix SystemStackError when running deploy:migrate (#247)
1 parent 7e41411 commit c2f84da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/capistrano/tasks/migrations.rake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ namespace :load do
3636
set :conditionally_migrate, fetch(:conditionally_migrate, false)
3737
set :migration_role, fetch(:migration_role, :db)
3838
set :migration_servers, -> { primary(fetch(:migration_role)) }
39-
set :migration_command, -> { fetch(:migration_command, 'db:migrate') }
39+
set :migration_command, fetch(:migration_command, 'db:migrate')
4040
end
4141
end

0 commit comments

Comments
 (0)