Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
goatherd
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CIP-Admins
goatherd
Commits
bf7c937b
Commit
bf7c937b
authored
5 years ago
by
arw
Committed by
Thomas Preisner
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
oops, locking. thx izibi
parent
b6b47b74
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
goatherd.go
+9
-0
9 additions, 0 deletions
goatherd.go
with
9 additions
and
0 deletions
goatherd.go
+
9
−
0
View file @
bf7c937b
...
...
@@ -291,6 +291,7 @@ func transactionFailed(err error) bool {
}
var
autoresyncList
map
[
string
]
*
autoresyncEntry
=
make
(
map
[
string
]
*
autoresyncEntry
)
var
autoresyncListLock
sync
.
RWMutex
type
autoresyncEntry
struct
{
Time
int64
...
...
@@ -322,7 +323,9 @@ func checkOffer(remote string, name string, offer string) (bool, error) {
errPanic
(
err
)
}
autoresyncListLock
.
RLock
()
if
s
,
found
:=
autoresyncList
[
name
];
found
{
autoresyncListLock
.
RUnlock
()
debugf
(
"[%v] autoresync in progress: %v"
,
remote
,
s
)
if
uint64
(
time
.
Now
()
.
Unix
()
-
s
.
Time
)
<=
cfg
.
AutoresyncTime
{
if
s
.
Num
>=
cfg
.
AutoresyncRepeat
&&
s
.
Counter
-
hotp
.
Counter
()
<
cfg
.
AutoresyncLookahead
{
...
...
@@ -335,8 +338,12 @@ func checkOffer(remote string, name string, offer string) (bool, error) {
}
else
{
// timeout
debugf
(
"[%v] autoresync timeout: %v"
,
remote
,
name
)
autoresyncListLock
.
Lock
()
delete
(
autoresyncList
,
name
)
autoresyncListLock
.
Unlock
()
}
}
else
{
autoresyncListLock
.
RUnlock
()
}
for
i
=
uint64
(
0
);
i
<=
lookahead
;
i
++
{
...
...
@@ -362,6 +369,7 @@ func checkOffer(remote string, name string, offer string) (bool, error) {
for
;
i
<=
cfg
.
AutoresyncLookahead
;
i
++
{
debugf
(
"[%v] autoresync checking for match (offset %v counter %v)"
,
remote
,
i
,
hotp
.
Counter
())
if
hotp
.
Check
(
offer
)
{
autoresyncListLock
.
Lock
()
debugf
(
"[%v] autoresync repeat count increase hotp.Counter %v, %v"
,
remote
,
hotp
.
Counter
(),
autoresyncList
[
name
])
if
s
,
found
:=
autoresyncList
[
name
];
found
&&
hotp
.
Counter
()
-
1
==
s
.
Counter
{
s
.
Time
=
time
.
Now
()
.
Unix
()
...
...
@@ -376,6 +384,7 @@ func checkOffer(remote string, name string, offer string) (bool, error) {
}
debugf
(
"[%v] autoresync repeat count init for %v"
,
remote
,
name
)
}
autoresyncListLock
.
Unlock
()
break
}
else
{
hotp
.
Increment
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment