No need for global authentication token

Each namespace/database has it’s own jwt signing authentication token, so a global token for the whole of the database is now unecessary.
This commit is contained in:
Tobie Morgan Hitchcock 2016-11-17 08:47:46 +00:00
parent ee6653c289
commit 3ef9eef887

View file

@ -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 {