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:
Diffstat (limited to 'internal/praefect/datastore/repository_store.go')
-rw-r--r--internal/praefect/datastore/repository_store.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/internal/praefect/datastore/repository_store.go b/internal/praefect/datastore/repository_store.go
index 6c7fe27ce..d3cf1e514 100644
--- a/internal/praefect/datastore/repository_store.go
+++ b/internal/praefect/datastore/repository_store.go
@@ -73,6 +73,7 @@ type RepositoryExistsError struct {
// Is checks whether the other errors is of the same type.
func (err RepositoryExistsError) Is(other error) bool {
+ //nolint:errorlint
_, ok := other.(RepositoryExistsError)
return ok
}
@@ -294,6 +295,8 @@ AND storage = ANY($3)
return sourceGeneration, nil
}
+//nolint:stylecheck
+//nolint:golint
func (rs *PostgresRepositoryStore) CreateRepository(ctx context.Context, virtualStorage, relativePath, storage string) error {
const q = `
WITH repo AS (