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/s3fs/s3.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'server/wkfs/s3fs/s3.go') diff --git a/server/wkfs/s3fs/s3.go b/server/wkfs/s3fs/s3.go index a71d874..331b55f 100644 --- a/server/wkfs/s3fs/s3.go +++ b/server/wkfs/s3fs/s3.go @@ -21,6 +21,10 @@ import ( // Register the /s3/ filesystem as a well-known filesystem. func Register(config *config.AWS) { + if config == nil { + registerBrokenFS(errors.New("aws credentials not found")) + return + } ac := &aws.Config{} // If region is unset the SDK will attempt to read the region from the environment. if config.Region != "" { -- cgit v1.2.3