From 1084b30005004d7784ac8b5e7c32ccf5555aed78 Mon Sep 17 00:00:00 2001 From: Akito Kasai Date: Mon, 14 Feb 2022 19:52:59 +0900 Subject: [PATCH] Fix the s3_wait empty check example --- digdag-docs/src/operators/s3_wait.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/digdag-docs/src/operators/s3_wait.md b/digdag-docs/src/operators/s3_wait.md index 6a56318e15..a02d75ae27 100644 --- a/digdag-docs/src/operators/s3_wait.md +++ b/digdag-docs/src/operators/s3_wait.md @@ -102,7 +102,7 @@ For more information about SSE-C, See the [AWS S3 Documentation](http://docs.aws timeout: 60s continue_on_timeout: true +task2: - if>: ${s3.last_object} + if>: ${!!s3.last_object} _do: echo>: "No timeout" ```