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

3295 commits

Author SHA1 Message Date
Mike Perham
66d6ee3535 timing is everything 2017-06-21 13:21:11 -07:00
Mike Perham
7b66865a7c Add required ruby version, fixes 2017-06-21 13:18:47 -07:00
Mike Perham
e03adc0698 fixes 2017-06-21 13:11:01 -07:00
Mike Perham
33846c849a Allow users to disable ID generation since some redis providers disable the CLIENT command, fixes 2017-06-21 04:54:18 -07:00
Mike Perham
7941d78f41 nil is a possibility? 2017-06-20 09:39:50 -07:00
Mike Perham
09fcc48b20 document and restructure this code because people continue to misunderstand it 2017-06-19 07:42:00 -07:00
Mike Perham
ad98a32cbc Update how delayed extensions are loaded, fixes 2017-06-16 08:47:34 -07:00
Mike Perham
980438c61d Add default Redis client identifier, 2017-06-16 08:40:43 -07:00
Mike Perham
1ecfd2cac0 Merge branch 'master' of github.com:mperham/sidekiq 2017-06-14 09:48:26 -07:00
Mike Perham
49ac680e47 notes 2017-06-14 09:48:20 -07:00
Christoph Olszowka
de3c467e01 Fixes a typo in release notes 2017-06-08 08:22:56 -07:00
Mike Perham
cd6d71dc77 bump 2017-06-08 08:12:07 -07:00
Mike Perham
b38bb6f676 polish 2017-06-07 10:26:44 -07:00
Alfonso Uceda Pompa
c02862bd97 Custom job_logger_class 2017-06-07 10:20:31 -07:00
Mike Perham
8f0a83ff52 Remove percy, the Web UI doesn’t change enough to justify the complex dependency 2017-06-06 14:54:20 -07:00
PikachuEXE
7fe2515138 Fix overriding class_attribute core extension from ActiveSupport with Sidekiq one 2017-06-06 08:10:08 -07:00
Mike Perham
7beed4fc51 fix cli 2017-06-05 11:30:31 -07:00
Mike Perham
10f573bb48 ver 2017-06-05 10:51:21 -07:00
Mike Perham
0c4c8c476f Remove core_ext usage 2017-06-05 10:45:39 -07:00
Mike Perham
0107ab287a Cache identity after daemonizing, fixes 2017-06-05 10:45:22 -07:00
Mike Perham
9b1e1a2ef4 note 2017-06-02 16:41:21 -07:00
Mike Perham
976bef7d06 Merge branch 'master' of github.com:mperham/sidekiq 2017-05-31 12:09:13 -07:00
Mike Perham
19e90ff57e Fix Redis Cluster issue with mget, fixes
Also, memoize the history lookup results.
2017-05-31 12:08:57 -07:00
Mauro Otonelli
c51cd8148f Fix RSpec generated worker template indentation 2017-05-29 10:46:12 -07:00
Mike Perham
d7d810cc1a rework leader api change to avoid breaking processset#to_a 2017-05-26 10:35:19 -07:00
Mike Perham
79f452c68d Add support for showing the Sidekiq Enterprise cluster leader process in Web UI, fixes 2017-05-26 10:26:46 -07:00
Mike Perham
ce5925aaf3 Merge branch 'master' of github.com:mperham/sidekiq 2017-05-26 10:01:14 -07:00
Mike Perham
8fadc5b476 2815 2017-05-26 10:01:08 -07:00
Nate Berkopec
acdd35fb01 Document that anything in sidekiq_options can also be sent to push
Was wondering if enterprise-specific features worked here.
2017-05-25 13:00:42 -07:00
Mike Perham
7e654f9dfb new unique feature 2017-05-18 13:01:19 -07:00
Mike Perham
528ca61ab2 inline stringify 2017-05-15 14:57:03 -07:00
Mike Perham
11028ed38b oops 2017-05-15 14:57:03 -07:00
Mike Perham
1b3f70a1e5 Move class_attribute impl into Sidekiq::Worker 2017-05-15 14:57:03 -07:00
Mike Perham
ddc40b2070 Avoid mutating the given hash in these cases 2017-05-15 14:57:03 -07:00
Mike Perham
5789d90f9d changes 2017-05-15 14:57:03 -07:00
Mike Perham
c413379441 Push constantize impl to where it is used.
Putting it in the main module was a terrible idea.  I don’t see the need for a junk drawer module yet so just copy the impl.
2017-05-15 14:57:03 -07:00
Mike Perham
1d5b559be9 Sidekiq::Util is not available on client-side, need to promote, 2017-05-15 14:57:03 -07:00
Mike Perham
df99ca982e Remove Hash#{stringify,symbolize}_keys, 2017-05-15 14:57:03 -07:00
Mike Perham
f9781e1bac Move constantize to Sidekiq::Util,
I don’t believe we need the Psych patch anymore because Sidekiq 5 guarantees that jobs are executed within Rails::Executor so classes should load as normal.  This was not the case back in early 4.2.x, 4.2.0, 4.2.1, etc.
2017-05-15 14:57:03 -07:00
Mike Perham
1399963eb0 It turns out that a deep merge isn’t required,
All locale files are a top-level locale key with a Hash of (key, string) translations, nothing more iirc.
2017-05-15 14:57:03 -07:00
Mike Perham
73448e2e5f We don’t appear to use silence_warnings anymore, 2017-05-15 14:57:03 -07:00
Reiji Kainuma
e2f588d8bd Fix typo on Changes ()
s/JobLogging/JobLogger
2017-05-11 08:53:15 -07:00
Ben Woosley
fb8fdc3687 Extract Processor#log_context to ease extending what's logged ()
* Extract Processor#log_context to ease extending what's logged

This was previously exposed in JobLogger and Middleware::Server::Logging
but was inlined into Processor.
701e06224c

Useful, e.g. in this case:
https://github.com/mperham/sidekiq/issues/1786

* Move job hash context logic into Sidekiq::Logging
2017-05-10 11:56:36 -07:00
Thibaut Barrère
2a8df9c256 Update COMM-LICENSE to fix a broken url () 2017-05-09 06:13:32 -07:00
Ben Woosley
018283141a Rescue at the method level in JobLogger () 2017-05-08 12:50:36 -07:00
Mike Perham
35a84a8132 154 2017-05-04 13:46:45 -07:00
Mike Perham
5f78712d71 dump reddit 2017-05-04 11:25:35 -07:00
Mike Perham
c9a9ad149b Merge branch 'master' of github.com:mperham/sidekiq 2017-05-04 11:13:26 -07:00
Mike Perham
f4c63e7f39 3458 2017-05-04 11:05:56 -07:00
Rafael Fidelis
0d314b145c Update footer UTC time in pooling dashboard refresh () 2017-05-04 07:20:05 -07:00