From 3ef9eef88775cca4889f2f1794b902469864c8e0 Mon Sep 17 00:00:00 2001 From: Tobie Morgan Hitchcock Date: Thu, 17 Nov 2016 08:47:46 +0000 Subject: [PATCH] No need for global authentication token MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Each namespace/database has it’s own jwt signing authentication token, so a global token for the whole of the database is now unecessary. --- cnf/cnf.go | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/cnf/cnf.go b/cnf/cnf.go index 4823092c..2c60d344 100644 --- a/cnf/cnf.go +++ b/cnf/cnf.go @@ -50,10 +50,9 @@ type Options struct { } Auth struct { - Auth string // Master authentication username:password - User string // Master authentication username - Pass string // Master authentication password - Token string + Auth string // Master authentication username:password + User string // Master authentication username + Pass string // Master authentication password } Node struct {