Skip to content

Commit

Permalink
Merge pull request #31 from rundeck-plugins/fix/parenthesis-on-log-st…
Browse files Browse the repository at this point in the history
…orage

Fix parethesis
  • Loading branch information
L2JE authored Jul 25, 2022
2 parents 7fdc279 + a2dfb1e commit ed9a90f
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 ed9a90f

Please sign in to comment.