Skip to content

Commit

Permalink
implement getConfiguredPathTemplate to return configured path
Browse files Browse the repository at this point in the history
  • Loading branch information
L2JE committed Oct 17, 2023
1 parent 88f6c91 commit c2ba062
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/main/java/org/rundeck/plugins/S3LogFileStoragePlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,11 @@ public boolean isAvailable(final String filetype) throws ExecutionFileStorageExc
return isPathAvailable(resolvedFilepath(expandedPath, filetype), expected);
}

@Override
public String getConfiguredPathTemplate() {
return this.path;
}

protected boolean isPathAvailable(final String key, Map<String, Object> expectedMeta)
throws ExecutionFileStorageException
{
Expand Down

0 comments on commit c2ba062

Please sign in to comment.