Sidekiq v4.1.2 Release Notes

    • ๐Ÿ›  Fix Redis data leak with worker data when a busy Sidekiq process crashes. You can find and expire leaked data in Redis with this script: bash $ redis-cli keys "*:workers" | while read LINE ; do TTL=`redis-cli expire "$LINE" 60`; echo "$LINE"; done; Please note that keys can be dangerous to run on a large, busy Redis. Caveat runner.
    • ๐Ÿ’Ž Freeze all string literals with Ruby 2.3. [#2741]
    • ๐Ÿ‘ท Client middleware can now stop bulk job push. [#2887]