mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Fix junos terminal error regex (#50538)
* Change junos terminal error regex to read error string correctly.
This commit is contained in:
@@ -38,7 +38,7 @@ class TerminalModule(TerminalBase):
|
||||
terminal_stderr_re = [
|
||||
re.compile(br"unknown command"),
|
||||
re.compile(br"syntax error"),
|
||||
re.compile(br"error: commit failed")
|
||||
re.compile(br"[\r\n]error:")
|
||||
]
|
||||
|
||||
def on_open_shell(self):
|
||||
|
||||
Reference in New Issue
Block a user