Skip to content

Commit

Permalink
fix(core): set anyOf map instead of list (#4519)
Browse files Browse the repository at this point in the history
close #4516
  • Loading branch information
Skraye committed Aug 2, 2024
1 parent 9e67f52 commit 251f8e5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public class UploadFiles extends Task implements RunnableTask<UploadFiles.Output
"output a map of files so that you can directly pass the output property to this task e.g. " +
"[outputFiles in the S3 Downloads task](https://kestra.io/plugins/plugin-aws/tasks/s3/io.kestra.plugin.aws.s3.downloads#outputfiles) " +
"or the [files in the Archive Decompress task](https://kestra.io/plugins/plugin-compress/tasks/io.kestra.plugin.compress.archivedecompress#files).",
anyOf = {List.class, String.class}
anyOf = {Map.class, String.class}
)
@PluginProperty(dynamic = true)
private Object filesMap;
Expand Down

0 comments on commit 251f8e5

Please sign in to comment.