resque-integration 3.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.drone.yml +28 -0
- data/.gitignore +21 -0
- data/.rspec +3 -0
- data/Appraisals +27 -0
- data/CHANGELOG.md +311 -0
- data/Gemfile +4 -0
- data/README.md +281 -0
- data/Rakefile +1 -0
- data/app/assets/javascripts/standalone/progress_bar.js +47 -0
- data/app/controllers/resque/jobs_controller.rb +42 -0
- data/app/controllers/resque/queues/info_controller.rb +9 -0
- data/app/controllers/resque/queues/status_controller.rb +38 -0
- data/app/views/shared/job_progress_bar.html.haml +17 -0
- data/bin/resque-status +59 -0
- data/config/routes.rb +13 -0
- data/config.ru +9 -0
- data/dip.yml +44 -0
- data/docker-compose.development.yml +12 -0
- data/docker-compose.drone.yml +6 -0
- data/docker-compose.yml +10 -0
- data/lib/generators/resque/integration/install/install_generator.rb +38 -0
- data/lib/resque/integration/backtrace.rb +29 -0
- data/lib/resque/integration/configuration.rb +238 -0
- data/lib/resque/integration/continuous.rb +75 -0
- data/lib/resque/integration/engine.rb +103 -0
- data/lib/resque/integration/extensions/job.rb +17 -0
- data/lib/resque/integration/extensions/worker.rb +17 -0
- data/lib/resque/integration/extensions.rb +8 -0
- data/lib/resque/integration/failure_backends/queues_totals.rb +37 -0
- data/lib/resque/integration/failure_backends.rb +7 -0
- data/lib/resque/integration/god.erb +99 -0
- data/lib/resque/integration/hooks.rb +72 -0
- data/lib/resque/integration/logs_rotator.rb +95 -0
- data/lib/resque/integration/monkey_patch/verbose_formatter.rb +10 -0
- data/lib/resque/integration/ordered.rb +142 -0
- data/lib/resque/integration/priority.rb +89 -0
- data/lib/resque/integration/queues_info/age.rb +53 -0
- data/lib/resque/integration/queues_info/config.rb +96 -0
- data/lib/resque/integration/queues_info/size.rb +33 -0
- data/lib/resque/integration/queues_info.rb +55 -0
- data/lib/resque/integration/tasks/hooks.rake +49 -0
- data/lib/resque/integration/tasks/lock.rake +37 -0
- data/lib/resque/integration/tasks/resque.rake +101 -0
- data/lib/resque/integration/unique.rb +218 -0
- data/lib/resque/integration/version.rb +5 -0
- data/lib/resque/integration.rb +146 -0
- data/lib/resque-integration.rb +1 -0
- data/resque-integration.gemspec +40 -0
- data/spec/fixtures/resque_queues.yml +45 -0
- data/spec/resque/controllers/jobs_controller_spec.rb +65 -0
- data/spec/resque/integration/configuration_spec.rb +147 -0
- data/spec/resque/integration/continuous_spec.rb +122 -0
- data/spec/resque/integration/failure_backends/queues_totals_spec.rb +105 -0
- data/spec/resque/integration/ordered_spec.rb +87 -0
- data/spec/resque/integration/priority_spec.rb +94 -0
- data/spec/resque/integration/queues_info_spec.rb +402 -0
- data/spec/resque/integration/unique_spec.rb +184 -0
- data/spec/resque/integration_spec.rb +105 -0
- data/spec/shared/resque_inline.rb +10 -0
- data/spec/spec_helper.rb +28 -0
- data/vendor/assets/images/progressbar/white.gif +0 -0
- data/vendor/assets/javascripts/jquery.progressbar.js +177 -0
- data/vendor/assets/stylesheets/jquery.progressbar.css.erb +33 -0
- data/vendor/assets/stylesheets/jquery.progressbar.no_pipeline.css +33 -0
- metadata +402 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: d09663fd4ebbbdeab2821981399c99d590c4d1f4
|
4
|
+
data.tar.gz: ae7c8f47a7b88af93bf6e5e46577f4e95ae8bcac
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: f3029f15b7082a53034862bdb3d0b9aae77784ac95f9dc73c05966abd881d722a7e5285ea8e83f28697a77f8d2dc6266d8c89e82e25b5d65a4c7564d3e105fcf
|
7
|
+
data.tar.gz: 2aebb5a7298e3bb1713f0490e4062445d74f600b657d47e77d27b06d64dfbd34a0e90ca3aa481c4eefb2169fb62f86dd4567835249f2737de02fcbcb328d526b
|
data/.drone.yml
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
build:
|
2
|
+
test:
|
3
|
+
image: abakpress/dind-testing
|
4
|
+
pull: true
|
5
|
+
privileged: true
|
6
|
+
volumes:
|
7
|
+
- /home/data/drone/images:/images
|
8
|
+
- /home/data/drone/gems:/bundle
|
9
|
+
environment:
|
10
|
+
- COMPOSE_FILE_EXT=drone
|
11
|
+
- RUBY_IMAGE_TAG=2.2-latest
|
12
|
+
commands:
|
13
|
+
- wrapdocker docker -v
|
14
|
+
|
15
|
+
- fetch-images --image abakpress/ruby-app:$RUBY_IMAGE_TAG
|
16
|
+
- dip provision
|
17
|
+
- dip rspec
|
18
|
+
|
19
|
+
release:
|
20
|
+
image: abakpress/gem-publication
|
21
|
+
pull: true
|
22
|
+
when:
|
23
|
+
event: push
|
24
|
+
branch: master
|
25
|
+
volumes:
|
26
|
+
- /home/data/drone/rubygems:/root/.gem
|
27
|
+
commands:
|
28
|
+
- release-gem --public
|
data/.gitignore
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
*.gem
|
2
|
+
*.rbc
|
3
|
+
.bundle
|
4
|
+
.config
|
5
|
+
.yardoc
|
6
|
+
Gemfile.lock
|
7
|
+
gemfiles
|
8
|
+
InstalledFiles
|
9
|
+
_yardoc
|
10
|
+
coverage
|
11
|
+
doc/
|
12
|
+
lib/bundler/man
|
13
|
+
pkg
|
14
|
+
rdoc
|
15
|
+
spec/reports
|
16
|
+
test/tmp
|
17
|
+
test/version_tmp
|
18
|
+
tmp
|
19
|
+
.idea
|
20
|
+
.ruby-version
|
21
|
+
spec/internal/log
|
data/.rspec
ADDED
data/Appraisals
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
appraise 'rails3.2' do
|
2
|
+
gem 'rails', '~> 3.2.0'
|
3
|
+
end
|
4
|
+
|
5
|
+
appraise 'rails4.0' do
|
6
|
+
gem 'rails', '~> 4.0.13'
|
7
|
+
end
|
8
|
+
|
9
|
+
appraise 'rails4.1' do
|
10
|
+
gem 'rails', '~> 4.1.16'
|
11
|
+
end
|
12
|
+
|
13
|
+
appraise 'rails4.2' do
|
14
|
+
gem 'rails', '~> 4.2.9'
|
15
|
+
end
|
16
|
+
|
17
|
+
appraise 'rails5.0' do
|
18
|
+
gem 'rails', '~> 5.0.0'
|
19
|
+
end
|
20
|
+
|
21
|
+
appraise 'rails5.1' do
|
22
|
+
gem 'rails', '~> 5.1.0'
|
23
|
+
end
|
24
|
+
|
25
|
+
appraise 'rails5.2' do
|
26
|
+
gem 'rails', '~> 5.2.0'
|
27
|
+
end
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,311 @@
|
|
1
|
+
# v3.4.1
|
2
|
+
|
3
|
+
* 2018-08-21 [b56dcc8](../../commit/b56dcc8) - __(Artem Napolskih)__ chore: Add automatic publication
|
4
|
+
* 2018-08-15 [5e90b55](../../commit/5e90b55) - __(Artem Napolskih)__ feat: rails 5-x support added
|
5
|
+
* 2018-06-05 [3fc2608](../../commit/3fc2608) - __(Pavel Galkin)__ Release 3.4.0
|
6
|
+
* 2018-06-05 [6ec7a38](../../commit/6ec7a38) - __(Pavel Galkin)__ feat: resque:expire task
|
7
|
+
https://jira.railsc.ru/browse/PC4-21225
|
8
|
+
|
9
|
+
Без теста, потому что тест писать это выносить count в аргумент, парсить
|
10
|
+
из строки с дефолтом, тут еще mock редис... Сложно.
|
11
|
+
|
12
|
+
* 2018-06-05 [236379c](../../commit/236379c) - __(Pavel Galkin)__ fix: add expiration time for retry counters
|
13
|
+
https://jira.railsc.ru/browse/PC4-21225
|
14
|
+
|
15
|
+
В тест тоже добавил, т.к. неизвестно очищается ли оттуда.
|
16
|
+
|
17
|
+
* 2018-05-14 [e4e32bc](../../commit/e4e32bc) - __(Zhidkov Denis)__ Release 3.3.0
|
18
|
+
* 2018-05-14 [cc0877a](../../commit/cc0877a) - __(Zhidkov Denis)__ feat: allow to customize path to job status metal
|
19
|
+
https://jira.railsc.ru/browse/ORDERS-1674
|
20
|
+
|
21
|
+
* 2018-04-25 [b8c4563](../../commit/b8c4563) - __(Artem Napolskih)__ Release v3.2.0
|
22
|
+
* 2018-04-23 [5228147](../../commit/5228147) - __(Andrew N. Shalaev)__ Release v3.1.0
|
23
|
+
* 2018-04-23 [19d47b4](../../commit/19d47b4) - __(Andrew N. Shalaev)__ feature: separate log file for god
|
24
|
+
* 2018-04-16 [3acf8f0](../../commit/3acf8f0) - __(Artem Napolskih)__ fix: use current rake tasks
|
25
|
+
* 2018-03-20 [ecf1c49](../../commit/ecf1c49) - __(Andrew N. Shalaev)__ Release v3.0.1
|
26
|
+
* 2018-03-19 [0837474](../../commit/0837474) - __(Andrew N. Shalaev)__ fix: pass on_failure_retry hook if retry is not defined
|
27
|
+
https://jira.railsc.ru/browse/BPC-11091
|
28
|
+
|
29
|
+
* 2018-03-19 [eeacf88](../../commit/eeacf88) - __(Andrew N. Shalaev)__ feature: spec on missing superclass for on_failure_retry
|
30
|
+
* 2018-03-16 [e57b3bd](../../commit/e57b3bd) - __(Michail Merkushin)__ Release 3.0.0
|
31
|
+
* 2018-02-22 [bd45620](../../commit/bd45620) - __(Andrew N. Shalaev)__ fix: keep meta_id on_failure_retry callback if Resque::DirtyExit occurred
|
32
|
+
https://jira.railsc.ru/browse/BPC-10431
|
33
|
+
|
34
|
+
* 2018-01-25 [927f57e](../../commit/927f57e) - __(Dmitry Bochkarev)__ fix: включение логирования в джобах
|
35
|
+
https://jira.railsc.ru/browse/PC4-21241
|
36
|
+
https://github.com/abak-press/pulscen/pull/16402#issuecomment-360086865
|
37
|
+
|
38
|
+
* 2018-01-22 [27b7b31](../../commit/27b7b31) - __(Dmitry Bochkarev)__ feature: обновление resque, resque-scheduler
|
39
|
+
https://jira.railsc.ru/browse/PC4-21241
|
40
|
+
|
41
|
+
resque-scheduler требует версию resque >= 1.26
|
42
|
+
|
43
|
+
* 2017-12-21 [1073796](../../commit/1073796) - __(Dmitry Bochkarev)__ Release 2.0.0
|
44
|
+
https://github.com/abak-press/pulscen/releases/tag/20171220
|
45
|
+
|
46
|
+
* 2017-12-18 [dd2f2c5](../../commit/dd2f2c5) - __(Michail Merkushin)__ fix: Properly encode lock's args with Hashes
|
47
|
+
https://jira.railsc.ru/browse/GOODS-1001
|
48
|
+
|
49
|
+
* 2017-12-11 [b0adbfa](../../commit/b0adbfa) - __(Michail Merkushin)__ feat: Add task for expire all resque locks
|
50
|
+
https://jira.railsc.ru/browse/PC4-21159
|
51
|
+
|
52
|
+
* 2017-12-11 [8eab793](../../commit/8eab793) - __(Nikolay Kondratyev)__ Release 1.18.0
|
53
|
+
* 2017-12-10 [9339287](../../commit/9339287) - __(Michail Merkushin)__ fix: Expire unique lock unless it deleted
|
54
|
+
https://jira.railsc.ru/browse/PC4-21159
|
55
|
+
|
56
|
+
* 2017-12-08 [cdc53a0](../../commit/cdc53a0) - __(Michail Merkushin)__ chore: Refactor. Remove ugly monkey patching. Remove gem resque-lock.
|
57
|
+
https://jira.railsc.ru/browse/PC4-21159
|
58
|
+
|
59
|
+
* 2017-11-01 [0bd7ab2](../../commit/0bd7ab2) - __(Simeon Movchan)__ Release 1.17.0
|
60
|
+
* 2017-10-31 [6d011ea](../../commit/6d011ea) - __(Simeon Movchan)__ feat: warning levels support in queues monitoring
|
61
|
+
https://jira.railsc.ru/browse/SERVICES-2051
|
62
|
+
|
63
|
+
* 2017-10-23 [deec7c2](../../commit/deec7c2) - __(Andrew N. Shalaev)__ Release v1.16.4
|
64
|
+
* 2017-10-23 [3b1cff6](../../commit/3b1cff6) - __(Andrew N. Shalaev)__ feature: optional constraint for resque job_status route
|
65
|
+
* 2017-09-11 [2de30b3](../../commit/2de30b3) - __(Andrew N. Shalaev)__ Release v1.16.3
|
66
|
+
* 2017-09-11 [7902ea0](../../commit/7902ea0) - __(Andrew N. Shalaev)__ Revert "feature: test of Resque::DirtyExit exception for uniq worker with retry"
|
67
|
+
This reverts commit d3d423f549a3b5015741d71a56a26ff9f840e970.
|
68
|
+
|
69
|
+
* 2017-09-11 [3b55c58](../../commit/3b55c58) - __(Andrew N. Shalaev)__ Revert "fix: keep meta_id on_failure_retry callback if Resque::DirtyExit occurred"
|
70
|
+
This reverts commit 1ff2f4eb5839a5d6da61f0c7d47e0a697954cd3c.
|
71
|
+
|
72
|
+
* 2017-09-07 [ddfaf30](../../commit/ddfaf30) - __(korotaev)__ Release 1.16.2
|
73
|
+
* 2017-09-06 [92531ff](../../commit/92531ff) - __(korotaev)__ fix(controller): disable browser cache
|
74
|
+
https://jira.railsc.ru/browse/GOODS-819
|
75
|
+
|
76
|
+
* 2017-09-04 [c47c07d](../../commit/c47c07d) - __(Dmitry Bochkarev)__ Release 1.16.1
|
77
|
+
* 2017-09-04 [949023c](../../commit/949023c) - __(Dmitry Bochkarev)__ fix: использоание параметров по умолчанию
|
78
|
+
* 2017-09-04 [6ae1c1f](../../commit/6ae1c1f) - __(Dmitry Bochkarev)__ fix: использование канала по умолчанию
|
79
|
+
* 2017-08-31 [07c8f53](../../commit/07c8f53) - __(Andrew N. Shalaev)__ Release v1.16.0
|
80
|
+
* 2017-08-31 [1ff2f4e](../../commit/1ff2f4e) - __(Andrew N. Shalaev)__ fix: keep meta_id on_failure_retry callback if Resque::DirtyExit occurred
|
81
|
+
https://jira.railsc.ru/browse/BPC-10431
|
82
|
+
|
83
|
+
* 2017-08-31 [d3d423f](../../commit/d3d423f) - __(Andrew N. Shalaev)__ feature: test of Resque::DirtyExit exception for uniq worker with retry
|
84
|
+
* 2017-08-01 [e6d9605](../../commit/e6d9605) - __(Nikolay Kondratyev)__ test: remove duplicated requiring
|
85
|
+
* 2017-08-01 [743bd72](../../commit/743bd72) - __(Nikolay Kondratyev)__ test: eliminate deprecation warnings
|
86
|
+
* 2017-07-18 [d4485c4](../../commit/d4485c4) - __(Dmitry Bochkarev)__ Release 1.15.0
|
87
|
+
Опрос статуса джоба перенесен из приложения на sinatra в контроллер.
|
88
|
+
Добавлена возможность передавать в хэлпер job_status_url идентификатор
|
89
|
+
джоба: `job_status_url(meta_id)`.
|
90
|
+
В проектах необходимо удалить текущее определение роутов
|
91
|
+
https://github.com/abak-press/pulscen/compare/63988fe...905ed86176dd83f1442e2f745223b23a534ce38b?expand=1#diff-21497849d8f00507c9c8dcaf6288b136L668
|
92
|
+
|
93
|
+
* 2017-07-18 [a0913be](../../commit/a0913be) - __(Dmitry Bochkarev)__ fix: добавление в роуты констрейнов
|
94
|
+
https://jira.railsc.ru/browse/SERVICES-1909
|
95
|
+
|
96
|
+
пришлось переписать тесты, т.к. в 4 рельсах из за констрейнов,
|
97
|
+
невозможно тестирование провести, без подключения apress-domains с
|
98
|
+
патченными роутами
|
99
|
+
|
100
|
+
* 2017-07-17 [e38bd9d](../../commit/e38bd9d) - __(Dmitry Bochkarev)__ fix: мемоизация меты в контроллере опроса статуса
|
101
|
+
https://jira.railsc.ru/browse/SERVICES-1909
|
102
|
+
|
103
|
+
* 2017-07-17 [df32bb7](../../commit/df32bb7) - __(Dmitry Bochkarev)__ chore: Appraisals
|
104
|
+
* 2017-07-17 [b1c5b8b](../../commit/b1c5b8b) - __(Dmitry Bochkarev)__ feature: контроллер для опроса статуса джобов
|
105
|
+
https://jira.railsc.ru/browse/SERVICES-1909
|
106
|
+
|
107
|
+
* 2017-07-04 [0b3a1f1](../../commit/0b3a1f1) - __(Semyon Pupkov)__ fix: proper convert hash in args with priority in retry
|
108
|
+
* 2017-06-23 [77168c9](../../commit/77168c9) - __(Semyon Pupkov)__ fix: proper implementation for allow dequeue job (#106)
|
109
|
+
- Remove meta, meta should be only in unique job
|
110
|
+
- Save priority value in args for allowing dequeue job
|
111
|
+
|
112
|
+
https://jira.railsc.ru/browse/USERS-421
|
113
|
+
* 2017-06-21 [2d6bcef](../../commit/2d6bcef) - __(Semyon Pupkov)__ feature: allow to use priority queues (#105)
|
114
|
+
https://jira.railsc.ru/browse/USERS-421
|
115
|
+
* 2017-04-24 [d2fb358](../../commit/d2fb358) - __(Michail Merkushin)__ Release 1.14.1
|
116
|
+
* 2017-04-24 [ffa3563](../../commit/ffa3563) - __(Michail Merkushin)__ fix: Always schedule to specific queue
|
117
|
+
https://jira.railsc.ru/browse/PC4-19474
|
118
|
+
|
119
|
+
* 2017-04-24 [26f7955](../../commit/26f7955) - __(Michail Merkushin)__ chore: Upgrade dev configs
|
120
|
+
* 2017-04-04 [069a809](../../commit/069a809) - __(Sergey Kucher)__ chore: limit resque-scheduler version < 4.2.1
|
121
|
+
```
|
122
|
+
Running `bundle update` will rebuild your snapshot from scratch, using only
|
123
|
+
the gems in your Gemfile, which may resolve the conflict.
|
124
|
+
Bundler could not find compatible versions for gem "resque":
|
125
|
+
In Gemfile:
|
126
|
+
apress-orders was resolved to 7.0.0, which depends on
|
127
|
+
resque-integration (>= 1.5.0) was resolved to 1.14.0, which depends on
|
128
|
+
resque (= 1.25.2)
|
129
|
+
|
130
|
+
apress-orders was resolved to 7.0.0, which depends on
|
131
|
+
resque-integration (>= 1.5.0) was resolved to 1.14.0, which depends on
|
132
|
+
resque-scheduler (~> 4.0) was resolved to 4.2.1, which depends on
|
133
|
+
resque (~> 1.26)
|
134
|
+
```
|
135
|
+
|
136
|
+
* 2017-03-16 [0ca9c91](../../commit/0ca9c91) - __(Stanislav Gordanov)__ Release 1.14.0
|
137
|
+
* 2017-03-16 [68e77da](../../commit/68e77da) - __(Stanislav Gordanov)__ chore: добавит сборку release в drone
|
138
|
+
* 2017-03-13 [073c77d](../../commit/073c77d) - __(Stanislav Gordanov)__ feat: добавит пороговые значения в информацию об очередях
|
139
|
+
https://jira.railsc.ru/browse/SG-5765
|
140
|
+
https://jira.railsc.ru/browse/SERVER-3277
|
141
|
+
|
142
|
+
* 2017-02-17 [5fc857f](../../commit/5fc857f) - __(Simeon Movchan)__ Release 1.13.0
|
143
|
+
* 2017-02-17 [1d07743](../../commit/1d07743) - __(Dmitry Bochkarev)__ fix: интеграция unique и resque-retry(сохраненние числа перезапусков)
|
144
|
+
https://jira.railsc.ru/browse/SERVICES-1192
|
145
|
+
|
146
|
+
* 2017-02-14 [459f33b](../../commit/459f33b) - __(rolex08)__ feature: add channel for each queue for zabbix
|
147
|
+
https://jira.railsc.ru/browse/SG-5633
|
148
|
+
|
149
|
+
* 2017-02-14 [64b383d](../../commit/64b383d) - __(Zhidkov Denis)__ feat: add failed resque jobs data for zabbix
|
150
|
+
https://jira.railsc.ru/browse/SG-5458
|
151
|
+
https://jira.railsc.ru/browse/SG-5459
|
152
|
+
|
153
|
+
* 2017-02-15 [bbe54c4](../../commit/bbe54c4) - __(Semyon Pupkov)__ Release 1.12.0
|
154
|
+
* 2017-02-01 [f01356c](../../commit/f01356c) - __(Semyon Pupkov)__ fix: job not unlock if unique definded with block and hash
|
155
|
+
* 2017-02-01 [a87da05](../../commit/a87da05) - __(Semyon Pupkov)__ feature: increase lock timeout for unique jobs (#92)
|
156
|
+
https://jira.railsc.ru/browse/USERS-187
|
157
|
+
* 2017-01-30 [c4961e0](../../commit/c4961e0) - __(Semyon Pupkov)__ chore: add docker
|
158
|
+
* 2016-10-03 [18aad28](../../commit/18aad28) - __(Dmitry Bochkarev)__ Release 1.11.0
|
159
|
+
* 2016-10-02 [bc14ed7](../../commit/bc14ed7) - __(Denis Erofeev)__ feature: allow erb syntax in schedule file
|
160
|
+
Review code for schedule config erb template
|
161
|
+
|
162
|
+
* 2016-09-22 [d178ecf](../../commit/d178ecf) - __(Denis Korobicyn)__ Release 1.10.0
|
163
|
+
* 2016-09-22 [eb438e4](../../commit/eb438e4) - __(Denis Korobicyn)__ fix: false overall metric + refactoring
|
164
|
+
* 2016-08-24 [dfaf158](../../commit/dfaf158) - __(Denis Korobicyn)__ fix: rename threshold methods
|
165
|
+
https://jira.railsc.ru/browse/PC4-17798
|
166
|
+
|
167
|
+
* 2016-08-22 [e740ba0](../../commit/e740ba0) - __(Denis Korobicyn)__ fix: return threshold in status for zabbix
|
168
|
+
https://jira.railsc.ru/browse/PC4-17798
|
169
|
+
|
170
|
+
* 2016-08-17 [029459f](../../commit/029459f) - __(Denis Korobicyn)__ feature: status for each queue for zabbtix
|
171
|
+
https://jira.railsc.ru/browse/PC4-17798
|
172
|
+
|
173
|
+
* 2016-06-14 [4d46356](../../commit/4d46356) - __(Simeon Movchan)__ Release 1.9.0
|
174
|
+
* 2016-06-07 [2bc67b8](../../commit/2bc67b8) - __(Mikhail Nelaev)__ fix: disconnect before forking
|
175
|
+
https://jira.railsc.ru/browse/SERVICES-1150
|
176
|
+
|
177
|
+
* 2016-05-23 [410dee3](../../commit/410dee3) - __(Simeon Movchan)__ Release 1.8.0
|
178
|
+
* 2016-05-20 [faa3bed](../../commit/faa3bed) - __(Evgeny Esaulkov)__ feat: allow erb syntax in conf file
|
179
|
+
* 2016-05-17 [d262d6e](../../commit/d262d6e) - __(Dmitry Bochkarev)__ fix: запуск GC при завершении работы воркеров
|
180
|
+
https://jira.railsc.ru/browse/SERVICES-1092
|
181
|
+
|
182
|
+
* 2016-05-06 [0a3bd6a](../../commit/0a3bd6a) - __(Michail Merkushin)__ Release 1.7.0
|
183
|
+
* 2016-04-26 [0f598e2](../../commit/0f598e2) - __(Mikhail Nelaev)__ fix: установит правильный бэкэнд, если notifier не включен
|
184
|
+
https://jira.railsc.ru/browse/SERVICES-766
|
185
|
+
|
186
|
+
* 2016-04-15 [e254f48](../../commit/e254f48) - __(Mikhail Nelaev)__ feature: подавление ошибок resque-retry
|
187
|
+
https://jira.railsc.ru/browse/SERVICES-766
|
188
|
+
https://jira.railsc.ru/browse/SERVICES-656
|
189
|
+
|
190
|
+
* 2016-03-03 [745a3a7](../../commit/745a3a7) - __(Artem Napolskih)__ Release 1.6.1
|
191
|
+
* 2016-02-29 [990f62e](../../commit/990f62e) - __(Artem Napolskih)__ feat: resque-status now return null when no active jobs
|
192
|
+
* 2016-02-16 [d3928bf](../../commit/d3928bf) - __(Artem Napolskih)__ Release 1.6.0
|
193
|
+
* 2016-02-15 [966f9e8](../../commit/966f9e8) - __(Artem Napolskih)__ feat: resque-status: oldest job work time
|
194
|
+
* 2015-10-30 [1cca357](../../commit/1cca357) - __(Michail Merkushin)__ Release 1.5.3
|
195
|
+
* 2015-10-26 [cf350d2](../../commit/cf350d2) - __(Denis Korobitcin)__ fix: allow change name for worker in god
|
196
|
+
https://jira.railsc.ru/browse/PC4-15870
|
197
|
+
|
198
|
+
* 2015-10-15 [6877d7a](../../commit/6877d7a) - __(Korotaev Danil)__ chore: use resque-scheduler 4.0
|
199
|
+
* 2015-10-05 [272ede7](../../commit/272ede7) - __(Korotaev Danil)__ feat: unique args in ordered jobs
|
200
|
+
Closes SERVICES-577
|
201
|
+
|
202
|
+
* 2015-10-05 [cd1b41d](../../commit/cd1b41d) - __(Michail Merkushin)__ Release 1.5.2
|
203
|
+
* 2015-10-05 [5f80ff4](../../commit/5f80ff4) - __(Michail Merkushin)__ Release 1.5.1
|
204
|
+
* 2015-09-29 [d26ed6e](../../commit/d26ed6e) - __(Korotaev Danil)__ fix(ordered): remove extra re-enqueues
|
205
|
+
* 2015-10-01 [959e494](../../commit/959e494) - __(Denis Korobitcin)__ chore(progress bar view): removed unused variable
|
206
|
+
* 2015-09-30 [effbbe1](../../commit/effbbe1) - __(Semyon Pupkov)__ Release 1.5.0
|
207
|
+
* 2015-09-30 [e47aff0](../../commit/e47aff0) - __(Semyon Pupkov)__ feature(progress): add progress bar
|
208
|
+
https://jira.railsc.ru/browse/PC4-15672
|
209
|
+
|
210
|
+
* 2015-09-15 [58ad5f4](../../commit/58ad5f4) - __(Michail Merkushin)__ Release 1.4.0
|
211
|
+
* 2015-09-15 [3ca76ed](../../commit/3ca76ed) - __(Michail Merkushin)__ feature: add shuffled queues on worker
|
212
|
+
https://jira.railsc.ru/browse/PC4-15507
|
213
|
+
|
214
|
+
* 2015-09-14 [f3ac05d](../../commit/f3ac05d) - __(Michail Merkushin)__ Release 1.3.0
|
215
|
+
* 2015-09-14 [333cf82](../../commit/333cf82) - __(Michail Merkushin)__ feature: independent meta for ordered jobs
|
216
|
+
https://jira.railsc.ru/browse/PC4-15507
|
217
|
+
|
218
|
+
* 2015-09-11 [bc27294](../../commit/bc27294) - __(Michail Merkushin)__ Release 1.2.0
|
219
|
+
* 2015-09-10 [1daa167](../../commit/1daa167) - __(Michail Merkushin)__ feature: add ordered jobs
|
220
|
+
https://jira.railsc.ru/browse/PC4-15507
|
221
|
+
|
222
|
+
* 2015-09-01 [29e3085](../../commit/29e3085) - __(Semyon Pupkov)__ Release 1.1.3
|
223
|
+
* 2015-09-01 [ab56d96](../../commit/ab56d96) - __(Igor)__ chore(resque helpers): overriding resque helpers to delete deprecated warning messages
|
224
|
+
* 2015-08-21 [e07a446](../../commit/e07a446) - __(Semyon Pupkov)__ fix: undefined method `silence_warnings'` for main:Object
|
225
|
+
this errors raises in gem resque-reports, if use activesupport
|
226
|
+
version 3.1.12
|
227
|
+
|
228
|
+
But silence_warnings not suspend warnings about `Resque::Helpers` because
|
229
|
+
resque reports not use warnigns, and this warn still present if use silence_warnings
|
230
|
+
|
231
|
+
* 2015-07-09 [555f1f8](../../commit/555f1f8) - __(bibendi)__ Release 1.1.2
|
232
|
+
* 2015-07-08 [608be5c](../../commit/608be5c) - __(Simeon Movchan)__ fix: eager_load! application in worker setup
|
233
|
+
https://jira.railsc.ru/browse/SERVICES-430
|
234
|
+
|
235
|
+
* 2015-03-31 [f28a754](../../commit/f28a754) - __(bibendi)__ Release 1.1.1
|
236
|
+
* 2015-03-31 [d7b17da](../../commit/d7b17da) - __(bibendi)__ Remove gem apress-gems
|
237
|
+
* 2015-03-31 [618418c](../../commit/618418c) - __(bibendi)__ Run resque-status with CLI arguments
|
238
|
+
* 2014-12-15 [10906d6](../../commit/10906d6) - __(bibendi)__ Release 1.1.0
|
239
|
+
* 2014-12-15 [0bdc244](../../commit/0bdc244) - __(bibendi)__ update apress-gems to 0.2.0
|
240
|
+
* 2014-12-15 [afa473a](../../commit/afa473a) - __(bibendi)__ remove resque-rails
|
241
|
+
* 2014-11-28 [3362b5e](../../commit/3362b5e) - __(bibendi)__ Release 1.0.1
|
242
|
+
* 2014-11-19 [4713fb2](../../commit/4713fb2) - __(bibendi)__ fix(hooks): verify connections for rails 4x
|
243
|
+
* 2014-11-13 [66329ba](../../commit/66329ba) - __(bibendi)__ Release 1.0.0
|
244
|
+
* 2014-11-10 [78ffdd9](../../commit/78ffdd9) - __(bibendi)__ add scheduler, retry, multy-job-forks
|
245
|
+
* 2014-10-23 [217ab60](../../commit/217ab60) - __(bibendi)__ bump version to 0.4.4
|
246
|
+
* 2014-10-23 [ad37905](../../commit/ad37905) - __(bibendi)__ connect to redis if has credentials in config file
|
247
|
+
* 2014-04-07 [3f05f83](../../commit/3f05f83) - __(Merkushin)__ bump version to 0.4.3
|
248
|
+
* 2014-04-07 [9d07f2e](../../commit/9d07f2e) - __(Merkushin)__ fix(tasks): rotation now depends on environment
|
249
|
+
* 2014-04-04 [1888006](../../commit/1888006) - __(Merkushin)__ bump version to 0.4.2
|
250
|
+
* 2014-04-04 [e698b35](../../commit/e698b35) - __(Merkushin)__ update gem god to 0.13.4
|
251
|
+
* 2014-04-03 [22650e0](../../commit/22650e0) - __(Merkushin)__ bump version to 0.4.1
|
252
|
+
* 2014-04-03 [42709d7](../../commit/42709d7) - __(Merkushin)__ fix lookup for Rails const
|
253
|
+
* 2014-04-01 [d4edc0c](../../commit/d4edc0c) - __(Merkushin)__ bump version to 0.4.0
|
254
|
+
* 2014-04-01 [929e7dc](../../commit/929e7dc) - __(Merkushin)__ отвязка god от релизных папок
|
255
|
+
* 2014-01-09 [fb69813](../../commit/fb69813) - __(Merkushin)__ Version bump to 0.3.1
|
256
|
+
* 2014-01-09 [dd8679c](../../commit/dd8679c) - __(Merkushin)__ rake task for logs rotation
|
257
|
+
* 2013-12-18 [6126234](../../commit/6126234) - __(Merkushin)__ Version bump to 0.3.0
|
258
|
+
* 2013-12-18 [16ad62b](../../commit/16ad62b) - __(Merkushin)__ feature(logs): logs rotation
|
259
|
+
* 2013-12-12 [32a345d](../../commit/32a345d) - __(Merkushin)__ Version bump to 0.2.11
|
260
|
+
* 2013-12-12 [22a4912](../../commit/22a4912) - __(Merkushin)__ fix(god) fast restart with nowait При рестарте не выключаем и включаем god, а подсовываем ему новую конфигу. Теперь при смене конфига больше нет необходимости дожидаться, пока длинные джобы будут завершены и только потом будут (пере)запущены очереди. Есть небольшой минус, глобальные опции, такие как pid_file_directory не будут перечитаны.
|
261
|
+
* 2013-12-12 [fb9a497](../../commit/fb9a497) - __(Merkushin)__ chore(git) ignore .idea
|
262
|
+
* 2013-09-03 [f9f5d9c](../../commit/f9f5d9c) - __(Alexei Mikhailov)__ Version bump to 0.2.10
|
263
|
+
* 2013-09-03 [6cc57ab](../../commit/6cc57ab) - __(Merkushin)__ feature(hooks): reformat process name
|
264
|
+
* 2013-09-03 [27feb40](../../commit/27feb40) - __(Меркушин Михаил)__ feature(hooks): детальное название процесса
|
265
|
+
Для того, чтобы смотреть в top и сразу понимать, что за джоб жрёт память
|
266
|
+
* 2013-08-29 [15849c7](../../commit/15849c7) - __(Alexei Mikhailov)__ Version bump to 0.2.9
|
267
|
+
* 2013-08-29 [da53254](../../commit/da53254) - __(Alexei Mikhailov)__ Explicitly set BUNDLE_GEMFILE for each worker
|
268
|
+
* 2013-07-03 [e4e8432](../../commit/e4e8432) - __(Alexei Mikhailov)__ Bump to version 0.2.8
|
269
|
+
* 2013-07-03 [87b113a](../../commit/87b113a) - __(Alexei Mikhailov)__ fix(resque-status): fix multi_json error when it choses ok_json adapter
|
270
|
+
* 2013-06-19 [4995e5f](../../commit/4995e5f) - __(Alexei Mikhailov)__ Version bump to 0.2.7
|
271
|
+
* 2013-06-19 [9561852](../../commit/9561852) - __(Alexei Mikhailov)__ fix(continuous): keep meta_id unchanged between continuous jobs
|
272
|
+
* 2013-06-18 [58a67d8](../../commit/58a67d8) - __(Alexei Mikhailov)__ Version bump to 0.2.6
|
273
|
+
* 2013-06-18 [c729cd5](../../commit/c729cd5) - __(Alexei Mikhailov)__ Freeze resque at 1.23.0
|
274
|
+
* 2013-06-18 [a8623c3](../../commit/a8623c3) - __(Alexei Mikhailov)__ Version bump to 0.2.5
|
275
|
+
* 2013-06-18 [9e2c065](../../commit/9e2c065) - __(Alexei Mikhailov)__ Remove resque-multi-job-forks due to bugs
|
276
|
+
* 2013-06-18 [1a71f34](../../commit/1a71f34) - __(Alexei Mikhailov)__ More precise lock key generation
|
277
|
+
* 2013-06-18 [3b41525](../../commit/3b41525) - __(Alexei Mikhailov)__ Fixed #33. rake resque:start теперь запускает resque при запущенном god
|
278
|
+
* 2013-06-17 [dd4c579](../../commit/dd4c579) - __(Alexei Mikhailov)__ Fixed #34. Workaround for capistrano deploys.
|
279
|
+
* 2013-05-22 [89da883](../../commit/89da883) - __(Alexei Mikhailov)__ Version bump to 0.2.4
|
280
|
+
* 2013-05-22 [414e467](../../commit/414e467) - __(Alexei Mikhailov)__ Generate lock_id from hash
|
281
|
+
* 2013-04-30 [c9507c5](../../commit/c9507c5) - __(Alexei Mikhailov)__ Version bump to 0.2.3
|
282
|
+
* 2013-04-30 [00afd0c](../../commit/00afd0c) - __(Alexei Mikhailov)__ Auto-generated config is not changed between releases
|
283
|
+
* 2013-04-29 [9d37c1d](../../commit/9d37c1d) - __(Alexei Mikhailov)__ Version bump to 0.2.2
|
284
|
+
* 2013-04-29 [a90f674](../../commit/a90f674) - __(Alexei Mikhailov)__ Fixed #29: Turn off Sinatra logging
|
285
|
+
* 2013-04-27 [8236ce5](../../commit/8236ce5) - __(Alexei Mikhailov)__ Version bump to 0.2.1
|
286
|
+
* 2013-04-27 [2904387](../../commit/2904387) - __(Alexei Mikhailov)__ Backport hooks behaviour from 1.24.1
|
287
|
+
* 2013-04-18 [99ed575](../../commit/99ed575) - __(Alexei Mikhailov)__ Version bump to 0.2.0
|
288
|
+
* 2013-04-18 [caafd08](../../commit/caafd08) - __(Alexei Mikhailov)__ Fixed #15; Fixed #16; God integration
|
289
|
+
* 2013-04-12 [ea17a78](../../commit/ea17a78) - __(Alexei Mikhailov)__ Fixed #14: log errors date/time
|
290
|
+
* 2013-04-12 [6adff6e](../../commit/6adff6e) - __(Alexei Mikhailov)__ Fixed broken resque-status
|
291
|
+
* 2013-04-11 [7781357](../../commit/7781357) - __(Alexei Mikhailov)__ Bump version to 0.1.6
|
292
|
+
* 2013-04-11 [089df13](../../commit/089df13) - __(Alexei Mikhailov)__ Redis options are now passed directly to Redis constructor
|
293
|
+
* 2013-04-10 [12f5fc0](../../commit/12f5fc0) - __(Alexei Mikhailov)__ Fixed #12: removed dependency from bundler in resque-status
|
294
|
+
* 2013-04-09 [f0f825c](../../commit/f0f825c) - __(Alexei Mikhailov)__ Version bump to 0.1.5
|
295
|
+
* 2013-04-09 [7726900](../../commit/7726900) - __(Alexei Mikhailov)__ resque-multi-job-forks recovered + refactoring
|
296
|
+
* 2013-04-08 [3ee123e](../../commit/3ee123e) - __(Alexei Mikhailov)__ Version bump to 0.1.4
|
297
|
+
* 2013-04-08 [49a2a0b](../../commit/49a2a0b) - __(Alexei Mikhailov)__ Revert reconnect hook for redis-3.x
|
298
|
+
* 2013-04-08 [dbd671b](../../commit/dbd671b) - __(Alexei Mikhailov)__ Version bump to 0.1.3
|
299
|
+
* 2013-04-08 [10201e4](../../commit/10201e4) - __(Alexei Mikhailov)__ Reestablish redis connection in each new fork
|
300
|
+
* 2013-04-05 [5274eeb](../../commit/5274eeb) - __(Alexei Mikhailov)__ Version bump to 0.1.2
|
301
|
+
* 2013-04-05 [1cbacab](../../commit/1cbacab) - __(Alexei Mikhailov)__ Parallel workers restart
|
302
|
+
* 2013-04-04 [913cbf8](../../commit/913cbf8) - __(Alexei Mikhailov)__ resque-failed-job-mailer integration
|
303
|
+
* 2013-04-03 [f0498d4](../../commit/f0498d4) - __(Alexei Mikhailov)__ Continuous jobs functionality
|
304
|
+
* 2013-04-03 [d0868bb](../../commit/d0868bb) - __(Alexei Mikhailov)__ Rails resque initializer
|
305
|
+
* 2013-04-02 [83fcadb](../../commit/83fcadb) - __(Alexei Mikhailov)__ Version bump to 0.1.0
|
306
|
+
* 2013-04-02 [ec7b4e5](../../commit/ec7b4e5) - __(Alexei Mikhailov)__ Конфигурирование переменных окружения
|
307
|
+
* 2013-04-02 [7e065be](../../commit/7e065be) - __(Merkushin)__ fix typo in file name
|
308
|
+
* 2013-04-02 [dcca754](../../commit/dcca754) - __(Merkushin)__ fix typo in file name
|
309
|
+
* 2013-04-01 [5a7c801](../../commit/5a7c801) - __(Alexei Mikhailov)__ Uniquiness functions extracted to separate module
|
310
|
+
* 2013-03-28 [f9c47e6](../../commit/f9c47e6) - __(Alexei Mikhailov)__ Initial commit
|
311
|
+
* 2013-03-28 [a2410e6](../../commit/a2410e6) - __(Alexei Mikhailov)__ Initial commit
|
data/Gemfile
ADDED