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:
authorPavlo Strokov <pstrokov@gitlab.com>2020-06-23 11:47:11 +0300
committerPavlo Strokov <pstrokov@gitlab.com>2020-06-23 11:47:11 +0300
commit46236caf43422edcd144a0c90884482f1041633b (patch)
treee2d19324cd443deec3f7247fb4daa7ac58003d23
parent5a4e3f0f8b311802e77df67f49d41e44951e92fc (diff)
Apply 1 suggestion(s) to 1 file(s)
-rw-r--r--internal/config/locator.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/config/locator.go b/internal/config/locator.go
index 670b4da24..f1cda5385 100644
--- a/internal/config/locator.go
+++ b/internal/config/locator.go
@@ -98,7 +98,7 @@ func (l *configLocator) GetObjectDirectoryPath(repo repository.GitRepo) (string,
fullPath := path.Join(repoPath, objectDirectoryPath)
if _, err := os.Stat(fullPath); os.IsNotExist(err) {
- return "", status.Errorf(codes.NotFound, "GetObjectDirectoryPath: does not exist '%s'", fullPath)
+ return "", status.Errorf(codes.NotFound, "GetObjectDirectoryPath: does not exist: %q", fullPath)
}
return fullPath, nil