Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
gitlab-ce
Commits
31b63330
Commit
31b63330
authored
Feb 28, 2017
by
http://jneen.net/
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use a more namespacey key for the exclusive lease
parent
885fc1de
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
app/models/user.rb
app/models/user.rb
+1
-1
No files found.
app/models/user.rb
View file @
31b63330
...
@@ -1028,7 +1028,7 @@ class User < ActiveRecord::Base
...
@@ -1028,7 +1028,7 @@ class User < ActiveRecord::Base
def
self
.
create_unique_internal
(
scope
,
username
,
email_pattern
,
&
creation_block
)
def
self
.
create_unique_internal
(
scope
,
username
,
email_pattern
,
&
creation_block
)
# Since we only want a single one of these in an instance, we use an
# Since we only want a single one of these in an instance, we use an
# exclusive lease to ensure than this block is never run concurrently.
# exclusive lease to ensure than this block is never run concurrently.
lease_key
=
"u
nique_internal_
#{
username
}
"
lease_key
=
"u
ser:unique_internal:
#{
username
}
"
lease
=
Gitlab
::
ExclusiveLease
.
new
(
lease_key
,
timeout:
1
.
minute
.
to_i
)
lease
=
Gitlab
::
ExclusiveLease
.
new
(
lease_key
,
timeout:
1
.
minute
.
to_i
)
until
uuid
=
lease
.
try_obtain
until
uuid
=
lease
.
try_obtain
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment