Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
1105 Внедрение механизмов обеспечения безопасности цепочки поставки программных проектов
Legacy
scanned-projects
helm
Commits
0a2d5845
Unverified
Commit
0a2d5845
authored
5 years ago
by
Matthew Fisher
Browse files
Options
Download
Patches
Plain Diff
fix(cmd): acquire file lock on repository.lock
Signed-off-by:
Matthew Fisher
<
matt.fisher@microsoft.com
>
parent
07c17133
release-2.17
dev-v2
release-2.16
v2.17.0
v2.17.0-rc.1
v2.16.12
v2.16.11
v2.16.10
v2.16.9
v2.16.8
v2.16.7
v2.16.6
v2.16.5
v2.16.4
v2.16.3
v2.16.2
v2.16.1
v2.16.0
v2.16.0-rc.2
v2.16.0-rc.1
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cmd/helm/repo_add.go
+8
-4
cmd/helm/repo_add.go
with
8 additions
and
4 deletions
+8
-4
cmd/helm/repo_add.go
+
8
−
4
View file @
0a2d5845
...
@@ -20,6 +20,8 @@ import (
...
@@ -20,6 +20,8 @@ import (
"context"
"context"
"fmt"
"fmt"
"io"
"io"
"path/filepath"
"strings"
"syscall"
"syscall"
"time"
"time"
...
@@ -135,8 +137,10 @@ func addRepository(name, url, username, password string, home helmpath.Home, cer
...
@@ -135,8 +137,10 @@ func addRepository(name, url, username, password string, home helmpath.Home, cer
return
fmt
.
Errorf
(
"Looks like %q is not a valid chart repository or cannot be reached: %s"
,
url
,
err
.
Error
())
return
fmt
.
Errorf
(
"Looks like %q is not a valid chart repository or cannot be reached: %s"
,
url
,
err
.
Error
())
}
}
// Lock the repository file for concurrent goroutines or processes synchronization
repoFile
:=
home
.
RepositoryFile
()
fileLock
:=
flock
.
New
(
home
.
RepositoryFile
())
// Acquire a file lock for process synchronization
fileLock
:=
flock
.
New
(
strings
.
Replace
(
repoFile
,
filepath
.
Ext
(
repoFile
),
".lock"
,
1
))
lockCtx
,
cancel
:=
context
.
WithTimeout
(
context
.
Background
(),
30
*
time
.
Second
)
lockCtx
,
cancel
:=
context
.
WithTimeout
(
context
.
Background
(),
30
*
time
.
Second
)
defer
cancel
()
defer
cancel
()
locked
,
err
:=
fileLock
.
TryLockContext
(
lockCtx
,
time
.
Second
)
locked
,
err
:=
fileLock
.
TryLockContext
(
lockCtx
,
time
.
Second
)
...
@@ -149,12 +153,12 @@ func addRepository(name, url, username, password string, home helmpath.Home, cer
...
@@ -149,12 +153,12 @@ func addRepository(name, url, username, password string, home helmpath.Home, cer
// Re-read the repositories file before updating it as its content may have been changed
// Re-read the repositories file before updating it as its content may have been changed
// by a concurrent execution after the first read and before being locked
// by a concurrent execution after the first read and before being locked
f
,
err
=
repo
.
LoadRepositoriesFile
(
home
.
Repository
File
()
)
f
,
err
=
repo
.
LoadRepositoriesFile
(
repo
File
)
if
err
!=
nil
{
if
err
!=
nil
{
return
err
return
err
}
}
f
.
Update
(
&
c
)
f
.
Update
(
&
c
)
return
f
.
WriteFile
(
home
.
Repository
File
()
,
0644
)
return
f
.
WriteFile
(
repo
File
,
0644
)
}
}
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
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
Menu
Explore
Projects
Groups
Topics
Snippets