mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
only warn if non whitespace junk
This commit is contained in:
parent
7d3366acc0
commit
b7ad86acd0
1 changed files with 4 additions and 1 deletions
|
@ -68,7 +68,10 @@ def _filter_non_json_lines(data):
|
||||||
# Trailing junk is uncommon and can point to things the user might
|
# Trailing junk is uncommon and can point to things the user might
|
||||||
# want to change. So print a warning if we find any
|
# want to change. So print a warning if we find any
|
||||||
trailing_junk = lines[len(lines) - reverse_end_offset:]
|
trailing_junk = lines[len(lines) - reverse_end_offset:]
|
||||||
warnings.append('Module invocation had junk after the JSON data: %s' % '\n'.join(trailing_junk))
|
for line in trailing_junk:
|
||||||
|
if line.strip():
|
||||||
|
warnings.append('Module invocation had junk after the JSON data: %s' % '\n'.join(trailing_junk))
|
||||||
|
break
|
||||||
|
|
||||||
lines = lines[:(len(lines) - reverse_end_offset)]
|
lines = lines[:(len(lines) - reverse_end_offset)]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue