You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The flag for PLUGIN_CONTAINER input is named as azure.blob-container-name as seen in the following snippet:- &cli.StringFlag{ Name: "azure.blob-container-name", Usage: "Azure Blob Storage container name", EnvVars: []string{"PLUGIN_CONTAINER", "AZURE_CONTAINER_NAME"},
But, the same variable is being accessed using name azure.container-name as shown in the following snippet:- Azure: azure.Config{ AccountName: c.String("azure.account-name"), AccountKey: c.String("azure.account-key"), ContainerName: c.String("azure.container-name"), BlobStorageURL: c.String("azure.blob-storage-url"), Azurite: false, Timeout: c.Duration("backend.operation-timeout"),
Observed Behaviour
The flag for PLUGIN_CONTAINER input is named as azure.blob-container-name as seen in the following snippet:-
&cli.StringFlag{ Name: "azure.blob-container-name", Usage: "Azure Blob Storage container name", EnvVars: []string{"PLUGIN_CONTAINER", "AZURE_CONTAINER_NAME"},
But, the same variable is being accessed using name azure.container-name as shown in the following snippet:-
Azure: azure.Config{ AccountName: c.String("azure.account-name"), AccountKey: c.String("azure.account-key"), ContainerName: c.String("azure.container-name"), BlobStorageURL: c.String("azure.blob-storage-url"), Azurite: false, Timeout: c.Duration("backend.operation-timeout"),
Version(s) Affected
No response
Steps to Reproduce
Expected Behaviour
Both the names for the input must be same
The text was updated successfully, but these errors were encountered: