Skip to content

Commit

Permalink
Adding a regex for stderr catching. (ansible#31945)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmighion authored and caphrim007 committed Oct 25, 2017
1 parent 09f55d3 commit 11153df
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/ansible/plugins/terminal/bigip.py
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down

0 comments on commit 11153df

Please sign in to comment.