Commit 35b22b03 authored by GitLab Bot's avatar GitLab Bot

Automatic merge of gitlab-org/gitlab-ce master

parents fc03cb11 5ee5b280
---
title: Set higher TTL for write lock of trace to prevent concurrent archiving
merge_request: 30064
author:
type: fixed
...@@ -5,7 +5,7 @@ module Gitlab ...@@ -5,7 +5,7 @@ module Gitlab
class Trace class Trace
include ::Gitlab::ExclusiveLeaseHelpers include ::Gitlab::ExclusiveLeaseHelpers
LOCK_TTL = 1.minute LOCK_TTL = 10.minutes
LOCK_RETRIES = 2 LOCK_RETRIES = 2
LOCK_SLEEP = 0.001.seconds LOCK_SLEEP = 0.001.seconds
......
...@@ -270,7 +270,7 @@ shared_examples_for 'common trace features' do ...@@ -270,7 +270,7 @@ shared_examples_for 'common trace features' do
include ExclusiveLeaseHelpers include ExclusiveLeaseHelpers
before do before do
stub_exclusive_lease_taken("trace:write:lock:#{trace.job.id}", timeout: 1.minute) stub_exclusive_lease_taken("trace:write:lock:#{trace.job.id}", timeout: 10.minutes)
end end
it 'blocks concurrent archiving' do it 'blocks concurrent archiving' do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment