mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
[PR #8741/73b54139 backport][stable-9] fix(opentelemetry): adjust default value for store_spans_in_file
causing traces to be produced to a file named None
(#8751)
fix(opentelemetry): adjust default value for `store_spans_in_file` causing traces to be produced to a file named `None` (#8741) * fix(opentelemetry): adjust default value for `store_spans_in_file` causing traces to be produced to a file named `None` The commit5f481939d
introduced `store_spans_in_file` with the default value `None` as a string. This causes the value of `store_spans_in_file` to be a not empty string, value=None as a string and not a null value. The rest of the code check if the store_spans_in_file is not null which squeezes the rest of the code. The following commit set the default value as an empty string. Signed-off-by: Wilfried Roset <wilfriedroset@users.noreply.github.com> * fix(opentelemetry): No default value is better, reword changelog Signed-off-by: Wilfried Roset <wilfriedroset@users.noreply.github.com> --------- Signed-off-by: Wilfried Roset <wilfriedroset@users.noreply.github.com> (cherry picked from commit73b54139d6
) Co-authored-by: Wilfried ROSET <wilfriedroset@users.noreply.github.com>
This commit is contained in:
parent
2e1040bfa5
commit
8444902289
2 changed files with 2 additions and 1 deletions
2
changelogs/fragments/8741-fix-opentelemetry-callback.yml
Normal file
2
changelogs/fragments/8741-fix-opentelemetry-callback.yml
Normal file
|
@ -0,0 +1,2 @@
|
|||
minor_changes:
|
||||
- opentelemetry callback plugin - fix default value for ``store_spans_in_file`` causing traces to be produced to a file named ``None`` (https://github.com/ansible-collections/community.general/issues/8566, https://github.com/ansible-collections/community.general/pull/8741).
|
|
@ -85,7 +85,6 @@ DOCUMENTATION = '''
|
|||
key: disable_attributes_in_logs
|
||||
version_added: 7.1.0
|
||||
store_spans_in_file:
|
||||
default: None
|
||||
type: str
|
||||
description:
|
||||
- It stores the exported spans in the given file
|
||||
|
|
Loading…
Reference in a new issue