From 6907242cae44d4a75aef3d70c6a62d9ab1eff4a4 Mon Sep 17 00:00:00 2001 From: Sandeep Date: Thu, 27 Jun 2019 18:53:33 -0700 Subject: [PATCH] azureblob: Updated config help details to remove connection string references (#3306) --- backend/azureblob/azureblob.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/azureblob/azureblob.go b/backend/azureblob/azureblob.go index 2ce124a90..92c6893ec 100644 --- a/backend/azureblob/azureblob.go +++ b/backend/azureblob/azureblob.go @@ -68,13 +68,13 @@ func init() { NewFs: NewFs, Options: []fs.Option{{ Name: "account", - Help: "Storage Account Name (leave blank to use connection string or SAS URL or Emulator)", + Help: "Storage Account Name (leave blank to use SAS URL or Emulator)", }, { Name: "key", - Help: "Storage Account Key (leave blank to use connection string or SAS URL or Emulator)", + Help: "Storage Account Key (leave blank to use SAS URL or Emulator)", }, { Name: "sas_url", - Help: "SAS URL for container level access only\n(leave blank if using account/key or connection string or Emulator)", + Help: "SAS URL for container level access only\n(leave blank if using account/key or Emulator)", }, { Name: "use_emulator", Help: "Uses local storage emulator if provided as 'true' (leave blank if using real azure storage endpoint)",