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:
parent
ee6653c289
commit
3ef9eef887
1 changed files with 3 additions and 4 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue