From 25fd5095ec4864302d06152389e2743208210323 Mon Sep 17 00:00:00 2001 From: Josh Liburdi Date: Sat, 9 Dec 2023 18:24:18 +0000 Subject: [PATCH] style: fmt --- .../build/config/condition/meta/if_all_else/config.jsonnet | 4 ++-- .../config/transform/meta/retry_with_backoff/config.jsonnet | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/build/config/condition/meta/if_all_else/config.jsonnet b/examples/build/config/condition/meta/if_all_else/config.jsonnet index 82508a94..c30d564c 100644 --- a/examples/build/config/condition/meta/if_all_else/config.jsonnet +++ b/examples/build/config/condition/meta/if_all_else/config.jsonnet @@ -13,8 +13,8 @@ local domain_match = sub.cnd.all( concurrency: 1, transforms: [ sub.tf.send.stdout(), - // In real-world deployments, the match decision is typically used - // to summarize an array of values. For this example, the decision + // In real-world deployments, the match decision is typically used + // to summarize an array of values. For this example, the decision // is represented as a boolean value and printed to stdout. sub.tf.meta.switch( settings={ switch: [ diff --git a/examples/build/config/transform/meta/retry_with_backoff/config.jsonnet b/examples/build/config/transform/meta/retry_with_backoff/config.jsonnet index 34eb4be3..632a7995 100644 --- a/examples/build/config/transform/meta/retry_with_backoff/config.jsonnet +++ b/examples/build/config/transform/meta/retry_with_backoff/config.jsonnet @@ -19,7 +19,7 @@ local cnd = sub.cnd.all([ local retries = ['0s', '1s', '2s', '4s']; { transforms: - // The retry with backoff behavior is implemented by pipelining a delay transform + // The retry with backoff behavior is implemented by pipelining a delay transform // with another transform and validating the Message before each retry. The delay // duration is increased with each attempt. [ @@ -38,7 +38,7 @@ local retries = ['0s', '1s', '2s', '4s']; for r in retries ] + [ // If there is no output after all retry attempts, then an error is thrown to crash the program. - // This is the same pattern from the build/config/transform/meta/crash_program example. + // This is the same technique from the build/config/transform/meta/crash_program example. sub.tf.meta.switch(settings={ switch: [ { condition: sub.cnd.any(key_is_empty),