Skip to content

Commit

Permalink
fix(http): uri on Download was not rendered
Browse files Browse the repository at this point in the history
  • Loading branch information
tchiotludo committed Aug 13, 2023
1 parent 8856f2b commit 00d9532
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/io/kestra/plugin/fs/http/Download.java
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public class Download extends AbstractHttp implements RunnableTask<Download.Outp

public Download.Output run(RunContext runContext) throws Exception {
Logger logger = runContext.logger();
URI from = new URI(this.uri);
URI from = new URI(runContext.render(this.uri));

File tempFile = runContext.tempFile(VfsService.extension(from)).toFile();

Expand Down

0 comments on commit 00d9532

Please sign in to comment.