chore: fix typos returned in some errors (#4414)
Some checks failed
FOSSA License Scanning / scan-license (push) Failing after 4s
Scorecards supply-chain security / Scorecards analysis (push) Failing after 9s
e2e / run-e2e-test (push) Failing after 27s
build / test (1.21.12, test-cloud-storage) (push) Failing after 8s
dockerhub-readme / update (push) Failing after 23s
validate / validate (validate-git) (push) Failing after 6s
build / test (1.22.5, test-coverage) (push) Failing after 6s
conformance / run-conformance-test (push) Failing after 29s
docs / build (push) Failing after 30s
docs / deploy (push) Has been skipped
e2e / run-e2e-test-s3-storage (push) Failing after 54s
validate / validate (validate-vendor) (push) Failing after 1m47s
CodeQL / Analyze (go) (push) Failing after 1m44s
build / test (1.22.5, test-cloud-storage) (push) Failing after 1m46s
validate / validate (lint) (push) Failing after 2m0s
build / test (1.21.12, test-coverage) (push) Failing after 12m41s
build / build (push) Has been cancelled
Some checks failed
FOSSA License Scanning / scan-license (push) Failing after 4s
Scorecards supply-chain security / Scorecards analysis (push) Failing after 9s
e2e / run-e2e-test (push) Failing after 27s
build / test (1.21.12, test-cloud-storage) (push) Failing after 8s
dockerhub-readme / update (push) Failing after 23s
validate / validate (validate-git) (push) Failing after 6s
build / test (1.22.5, test-coverage) (push) Failing after 6s
conformance / run-conformance-test (push) Failing after 29s
docs / build (push) Failing after 30s
docs / deploy (push) Has been skipped
e2e / run-e2e-test-s3-storage (push) Failing after 54s
validate / validate (validate-vendor) (push) Failing after 1m47s
CodeQL / Analyze (go) (push) Failing after 1m44s
build / test (1.22.5, test-cloud-storage) (push) Failing after 1m46s
validate / validate (lint) (push) Failing after 2m0s
build / test (1.21.12, test-coverage) (push) Failing after 12m41s
build / build (push) Has been cancelled
This commit is contained in:
commit
3fe707de5c
3 changed files with 3 additions and 3 deletions
|
@ -21,7 +21,7 @@ import (
|
||||||
// init handles registering the token auth backend.
|
// init handles registering the token auth backend.
|
||||||
func init() {
|
func init() {
|
||||||
if err := auth.Register("token", auth.InitFunc(newAccessController)); err != nil {
|
if err := auth.Register("token", auth.InitFunc(newAccessController)); err != nil {
|
||||||
logrus.Errorf("tailed to register token auth: %v", err)
|
logrus.Errorf("failed to register token auth: %v", err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,7 @@ import (
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
if err := storagemiddleware.Register("redirect", newRedirectStorageMiddleware); err != nil {
|
if err := storagemiddleware.Register("redirect", newRedirectStorageMiddleware); err != nil {
|
||||||
logrus.Errorf("tailed to register redirect storage middleware: %v", err)
|
logrus.Errorf("failed to register redirect storage middleware: %v", err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,7 @@ import (
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
if err := storagemiddleware.Register("rewrite", newRewriteStorageMiddleware); err != nil {
|
if err := storagemiddleware.Register("rewrite", newRewriteStorageMiddleware); err != nil {
|
||||||
logrus.Errorf("tailed to register redirect storage middleware: %v", err)
|
logrus.Errorf("failed to register redirect storage middleware: %v", err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue