From a2dadfd6a64495b3d2b0392d15df3bff322909fe Mon Sep 17 00:00:00 2001 From: Brad Rydzewski Date: Mon, 13 Oct 2014 21:30:12 -0700 Subject: [PATCH 1/2] added log message when user attempts to login but registration closed --- server/handler/login.go | 1 + 1 file changed, 1 insertion(+) diff --git a/server/handler/login.go b/server/handler/login.go index 95c009de1..fdae48a5a 100644 --- a/server/handler/login.go +++ b/server/handler/login.go @@ -52,6 +52,7 @@ func GetLogin(c web.C, w http.ResponseWriter, r *http.Request) { if capability.Enabled(ctx, capability.Registration) == false { users, err := datastore.GetUserList(ctx) if err != nil || len(users) != 0 { + log.Println("Unable to create account. Registration is closed") w.WriteHeader(http.StatusForbidden) return } From 42979c55039e2bdd2a5e844aaa51f8ebb537b29d Mon Sep 17 00:00:00 2001 From: Brad Rydzewski Date: Mon, 13 Oct 2014 21:37:59 -0700 Subject: [PATCH 2/2] updated README --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index e88ba1f96..b79d82753 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,12 @@ We highly recommend running Docker with the AUFS storage driver. You can verify Docker is using the AUFS storage driver with the following command `sudo docker info | grep Driver:` +## Upgrading + +If you are upgrading from `0.2` I would recommend waiting a few weeks for the master +branch to stabilize. There was a huge amount of refacotring that destabilized the codebase +and I'd hate for that to impact any real world installations. + ## Installation **This is project is alpha stage. Consider yourself warned**