1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00

Adds USR2 changes

This commit is contained in:
Case Taintor 2014-02-07 17:04:33 -05:00
parent 98e2aceaaa
commit c720dad01b

View file

@ -1,3 +1,13 @@
2.17.5
-----------
- A `USR2` signal will now reopen _all_ logs, using IO#reopen. Thus, instead of creating a new Logger object,
Sidekiq will now just update the existing Logger's file descriptor [#1163].
Like Unicorn, a File object is considered a log file if:
- opened with the `O_APPEND` and `O_WRONLY` flags
- the current open file handle does not match its original open path
- unbuffered (as far as userspace buffering goes, not `O_SYNC`)
2.17.4
-----------