diff options
author | Vincent Ambo <tazjin@google.com> | 2019-08-14T19·08+0100 |
---|---|---|
committer | Vincent Ambo <github@tazj.in> | 2019-08-14T19·18+0100 |
commit | 36d50d1f19f8c55e1eb707639fe73906d8dd30e8 (patch) | |
tree | 6c66683e5daba1410197dcc2e29ce072d807e473 /tools/nixery/server/main.go | |
parent | cf227c153f0eb55b2d931c780d3f7b020e8844bb (diff) |
fix(server): Print correct project name during startup
They grow up so fast :')
Diffstat (limited to 'tools/nixery/server/main.go')
-rw-r--r-- | tools/nixery/server/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/nixery/server/main.go b/tools/nixery/server/main.go index fd307f79d4b4..da181249b285 100644 --- a/tools/nixery/server/main.go +++ b/tools/nixery/server/main.go @@ -195,7 +195,7 @@ func main() { bucket := prepareBucket(&ctx, cfg) cache := builder.NewCache() - log.Printf("Starting Kubernetes Nix controller on port %s\n", cfg.Port) + log.Printf("Starting Nixery on port %s\n", cfg.Port) // All /v2/ requests belong to the registry handler. http.Handle("/v2/", ®istryHandler{ |