Skip to content

Commit

Permalink
fix: backport
Browse files Browse the repository at this point in the history
  • Loading branch information
loicmathieu committed Jun 21, 2024
1 parent c5a8575 commit 079cd78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/io/kestra/plugin/aws/sqs/Consume.java
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public Output run(RunContext runContext) throws Exception {
try (var sqsClient = this.client(runContext)) {
var total = new AtomicInteger();
var started = ZonedDateTime.now();
var tempFile = runContext.workingDir().createTempFile(".ion").toFile();
var tempFile = runContext.tempFile(".ion").toFile();

try (var outputFile = new BufferedOutputStream(new FileOutputStream(tempFile))) {
do {
Expand Down

0 comments on commit 079cd78

Please sign in to comment.