You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rails 4.2 does not preserve the duration type on multiplication:
```ruby
x = 5.days
# => 5 days
x *= 2
# => 864000
```
This fixes the Rake task so that we use the correct when calculating the
timestamp. In order to get the nicely worded output for the duration in
the logs we need to re-cast the duration at that point.
0 commit comments