Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZeger-Jan van de Weg <git@zjvandeweg.nl>2019-06-04 16:18:08 +0300
committerZeger-Jan van de Weg <git@zjvandeweg.nl>2019-06-04 16:26:40 +0300
commit9f421054d1483db93d11502877c758938dbc5f9b (patch)
tree19e3ae936dee9bd3245769991f60071dbf1ffaed /internal/bootstrap
parent43bd39ba6f5162be872e1e0c1b4a65fcf1377ca5 (diff)
Praefect configuration fixes
Today I've tried to determine the state of the praefect project, and had to find out a couple of things which I tried to make easier for the ones that will do the same later.
Diffstat (limited to 'internal/bootstrap')
-rw-r--r--internal/bootstrap/bootstrap.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/bootstrap/bootstrap.go b/internal/bootstrap/bootstrap.go
index bfb58066c..41c1c7d89 100644
--- a/internal/bootstrap/bootstrap.go
+++ b/internal/bootstrap/bootstrap.go
@@ -171,7 +171,7 @@ func (b *Bootstrap) waitGracePeriod(kill <-chan os.Signal) error {
func (b *Bootstrap) listen(network, path string) (net.Listener, error) {
if network == "unix" && b.isFirstBoot() {
- if err := os.Remove(path); err != nil && !os.IsNotExist(err) {
+ if err := os.RemoveAll(path); err != nil {
return nil, err
}
}