From 409909a7f5db65561fa97734edc95504e847b5d0 Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Fri, 22 Nov 2019 15:09:09 +0100 Subject: [PATCH] Add option description for Region --- internal/backend/s3/config.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/backend/s3/config.go b/internal/backend/s3/config.go index 472d79e4a..499e05094 100644 --- a/internal/backend/s3/config.go +++ b/internal/backend/s3/config.go @@ -20,9 +20,9 @@ type Config struct { Layout string `option:"layout" help:"use this backend layout (default: auto-detect)"` StorageClass string `option:"storage-class" help:"set S3 storage class (STANDARD, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING or REDUCED_REDUNDANCY)"` - Connections uint `option:"connections" help:"set a limit for the number of concurrent connections (default: 5)"` - MaxRetries uint `option:"retries" help:"set the number of retries attempted"` - Region string + Connections uint `option:"connections" help:"set a limit for the number of concurrent connections (default: 5)"` + MaxRetries uint `option:"retries" help:"set the number of retries attempted"` + Region string `option:"region" help:"set region"` } // NewConfig returns a new Config with the default values filled in.