Skip to content
代码片段 群组 项目
提交 319ad456 编辑于 作者: Sylvester Chin's avatar Sylvester Chin 提交者: Bob Van Landuyt
浏览文件

Revert "Merge branch 'jv-remove-duplicate-jobs-multistore' into 'master'"

This reverts commit 3dac2086, reversing
changes made to 5e5bc47a.
上级 9c1cc1bd
No related branches found
No related tags found
无相关合并请求
...@@ -220,7 +220,12 @@ def jid ...@@ -220,7 +220,12 @@ def jid
end end
def cookie_key def cookie_key
"#{idempotency_key}:cookie:v2" # This duplicates `Gitlab::Redis::Queues::SIDEKIQ_NAMESPACE` both here and in `#idempotency_key`
# This is because `Sidekiq.redis` used to add this prefix automatically through `redis-namespace`
# and we did not notice this in https://gitlab.com/gitlab-org/gitlab/-/merge_requests/25447
# Now we're keeping this as-is to avoid a key-migration when redis-namespace gets
# removed from Sidekiq: https://gitlab.com/groups/gitlab-com/gl-infra/-/epics/944
"#{Gitlab::Redis::Queues::SIDEKIQ_NAMESPACE}:#{idempotency_key}:cookie:v2"
end end
def get_cookie def get_cookie
...@@ -252,7 +257,7 @@ def reschedulable? ...@@ -252,7 +257,7 @@ def reschedulable?
end end
def with_redis(&block) def with_redis(&block)
Sidekiq.redis(&block) # rubocop:disable Cop/SidekiqRedisCall Gitlab::Redis::Queues.with(&block) # rubocop:disable Cop/RedisQueueUsage, CodeReuse/ActiveRecord
end end
end end
end end
......
...@@ -79,10 +79,10 @@ ...@@ -79,10 +79,10 @@
context 'with Redis cookies' do context 'with Redis cookies' do
def with_redis(&block) def with_redis(&block)
Sidekiq.redis(&block) Gitlab::Redis::Queues.with(&block)
end end
let(:cookie_key) { "#{idempotency_key}:cookie:v2" } let(:cookie_key) { "#{Gitlab::Redis::Queues::SIDEKIQ_NAMESPACE}:#{idempotency_key}:cookie:v2" }
let(:cookie) { get_redis_msgpack(cookie_key) } let(:cookie) { get_redis_msgpack(cookie_key) }
describe '#check!' do describe '#check!' do
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册