Skip to content

Commit

Permalink
Fix parethesis
Browse files Browse the repository at this point in the history
  • Loading branch information
L2JE committed Jul 25, 2022
1 parent 052212e commit a2dfb1e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ class AzureFileStoragePlugin implements ExecutionFileStoragePlugin, ExecutionMul
serviceClient = account.createCloudBlobClient();

// Container name must be lower case.
this.containerName = this.containerName ? this.containerName.toLowerCase : expandedPath.substring(0,expandedPath.indexOf("/")).toLowerCase()
this.containerName = this.containerName ? this.containerName.toLowerCase() : expandedPath.substring(0,expandedPath.indexOf("/")).toLowerCase()

container = serviceClient.getContainerReference(containerName)
container.createIfNotExists()
Expand Down

0 comments on commit a2dfb1e

Please sign in to comment.