From a427038700c0f1c080090a8158c1a793923aa03c Mon Sep 17 00:00:00 2001 From: Niall Sheridan Date: Sun, 16 Oct 2016 16:47:09 +0100 Subject: Unmarshal the config using mapstructure directly. Avoid unmarshalling into an intermediate struct. Better tests. --- server/wkfs/vaultfs/vault.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'server/wkfs/vaultfs/vault.go') diff --git a/server/wkfs/vaultfs/vault.go b/server/wkfs/vaultfs/vault.go index 6f11057..f7c1360 100644 --- a/server/wkfs/vaultfs/vault.go +++ b/server/wkfs/vaultfs/vault.go @@ -14,6 +14,10 @@ import ( // Register the /vault/ filesystem as a well-known filesystem. func Register(vc *config.Vault) { + if vc == nil { + registerBrokenFS(errors.New("no vault configuration found")) + return + } client, err := vault.NewClient(vc.Address, vc.Token) if err != nil { registerBrokenFS(err) -- cgit v1.2.3