From 1c481d34d9b77b47273152cd19f70e26aabd952f Mon Sep 17 00:00:00 2001 From: Bouke van der Bijl Date: Thu, 22 Aug 2019 13:28:00 +0000 Subject: [PATCH] registry: Fix typo in RepositoryRemover warning Signed-off-by: Bouke van der Bijl --- registry/handlers/app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/registry/handlers/app.go b/registry/handlers/app.go index 057e4e4e..f879eaee 100644 --- a/registry/handlers/app.go +++ b/registry/handlers/app.go @@ -328,7 +328,7 @@ func NewApp(ctx context.Context, config *configuration.Configuration) *App { var ok bool app.repoRemover, ok = app.registry.(distribution.RepositoryRemover) if !ok { - dcontext.GetLogger(app).Warnf("Registry does not implement RempositoryRemover. Will not be able to delete repos and tags") + dcontext.GetLogger(app).Warnf("Registry does not implement RepositoryRemover. Will not be able to delete repos and tags") } return app