-
Notifications
You must be signed in to change notification settings - Fork 21.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
created rake restart task #18965
created rake restart task #18965
Conversation
@hjoo I think you can add some tests for this rake task in |
205882c
to
41f5c80
Compare
assert_not_equal prev_mtime, curr_mtime | ||
end | ||
end | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@hjoo can you remove this extra line. Otherwise I think this is looking good 😄
Fixes rails#18876. Rake restart touches `tmp/restart.txt` to restart application on next request. Updated tests and documentation accordingly.
Does this task need to depend on the |
Yes, it can be dropped |
@hjoo can you send a new PR that just does |
|
Thanks @matthewd it's early here 😁 need moar ☕ |
Done! :) |
Created rake restart task to address issue #18876. Was uncertain if spring restart required if tmp/restart.txt will be on Spring watch list (referencing #18874).