From 715bca57f72999c7ba7d6fb88859ed057c4d9f40 Mon Sep 17 00:00:00 2001 From: L2JE Date: Tue, 17 Oct 2023 13:51:34 -0300 Subject: [PATCH] implement getConfiguredPathTemplate to return configured path --- .../plugins/azure/plugin/AzureFileStoragePlugin.groovy | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/main/groovy/com/rundeck/plugins/azure/plugin/AzureFileStoragePlugin.groovy b/src/main/groovy/com/rundeck/plugins/azure/plugin/AzureFileStoragePlugin.groovy index 58beaa7..b42f048 100644 --- a/src/main/groovy/com/rundeck/plugins/azure/plugin/AzureFileStoragePlugin.groovy +++ b/src/main/groovy/com/rundeck/plugins/azure/plugin/AzureFileStoragePlugin.groovy @@ -310,5 +310,8 @@ class AzureFileStoragePlugin implements ExecutionFileStoragePlugin, ExecutionMul return blob } - + @Override + public String getConfiguredPathTemplate(){ + return this.path; + } }