From b17029e0f30ca3e3ad8c515ed1bd0d356f306cd2 Mon Sep 17 00:00:00 2001 From: SebClem Date: Sun, 6 Mar 2022 22:31:27 +0100 Subject: [PATCH] :hammer: Fix line breack --- templates/vector.yml.j2 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/vector.yml.j2 b/templates/vector.yml.j2 index 47808ce..0a86e2d 100644 --- a/templates/vector.yml.j2 +++ b/templates/vector.yml.j2 @@ -8,10 +8,10 @@ api: address: "0.0.0.0:8686" sources: - {{ sources | to_nice_yaml(indent=2) | trim | indent(2) }} + {{ sources | to_nice_yaml(indent=2, width=99999) | trim | indent(2) }} transforms: - {{ transforms | to_nice_yaml(indent=2) | trim | indent(2) }} + {{ transforms | to_nice_yaml(indent=2), width=99999| trim | indent(2) }} sinks: - {{ sinks | to_nice_yaml(indent=2) | trim | indent(2) }} \ No newline at end of file + {{ sinks | to_nice_yaml(indent=2), width=99999 | trim | indent(2) }} \ No newline at end of file