mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Adding a regex for stderr catching. (#31945)
This commit is contained in:
parent
09f55d300b
commit
11153df0a1
1 changed files with 1 additions and 0 deletions
|
@ -36,6 +36,7 @@ class TerminalModule(TerminalBase):
|
|||
|
||||
terminal_stderr_re = [
|
||||
re.compile(br"% ?Error"),
|
||||
re.compile(br"Syntax Error", re.I),
|
||||
re.compile(br"% User not present"),
|
||||
re.compile(br"% ?Bad secret"),
|
||||
re.compile(br"invalid input", re.I),
|
||||
|
|
Loading…
Reference in a new issue