-
Feature Request
-
Resolution: Unresolved
-
Undefined
-
None
-
n/a, 2.5
-
False
-
-
False
Description
When running a job template that output long lines and inspecting it in the gateway interface, long lines are forced to a limited max length that adds unexpected multiple empty new lines the creates confusion when checking the results.
Line length seems to be limited at around 80 characters for no explicit reason.
In 2.5:
In 2.6:
Steps to reproduce
- Using the sample playbook
--- - name: "Debug writing stuff" hosts: all vars: var1: "1" var2: 2 var3: "/some/very/long/path/with/some/nesting/and/strings/yolo/" var4: "/some/long/path/with/some/nesting/and/strings/" tasks: - name: "With folding" debug: msg: | a: {{ var1 }} b: {{ var2 }} EXTRA VARS a_very_longstring_with_SOME_symbols: {{ var3 }} c: {{ var1 }} - name: "With folding shorter line" debug: msg: | a: {{ var1 }} b: {{ var2 }} EXTRA VARS z1: {{ var3 }} z2: {{ var4 }} c: {{ var1 }} - name: "With arrays" debug: msg: - "a: {{ var1 }}" - "b: {{ var2 }}" - "EXTRA VARS" - "z1: {{ var3 }}" - "z2: {{ var4 }}" - "c: {{ var1 }}"
- Execute the job and inspect the outputs
Requested change
Do not preformat the output to line length constraints