revert 40940 and fix nxos output truncated issue (#40960)
* revert 40940 Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * revert #40655 fixes output getting truncated issue for nxos Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
This commit is contained in:
parent
079318bf4a
commit
0fd7d7500a
1 changed files with 2 additions and 2 deletions
|
@ -30,8 +30,8 @@ from ansible.module_utils._text import to_bytes, to_text
|
||||||
class TerminalModule(TerminalBase):
|
class TerminalModule(TerminalBase):
|
||||||
|
|
||||||
terminal_stdout_re = [
|
terminal_stdout_re = [
|
||||||
re.compile(br'[\r\n]?(?!\s*<)?(\x1b\S+)*[a-zA-Z_]{1}[a-zA-Z0-9-_.]*[>|#|%](?:\s*)*(\x1b\S+)*$'),
|
re.compile(br'[\r\n]?(?!\s*<)?(\x1b\S+)*[a-zA-Z_0-9]{1}[a-zA-Z0-9-_.]*[>|#](?:\s*)*(\x1b\S+)*$'),
|
||||||
re.compile(br'[\r\n]?[a-zA-Z]{1}[a-zA-Z0-9-_.]*\(.+\)#(?:\s*)$')
|
re.compile(br'[\r\n]?[a-zA-Z0-9]{1}[a-zA-Z0-9-_.]*\(.+\)#(?:\s*)$')
|
||||||
]
|
]
|
||||||
|
|
||||||
terminal_stderr_re = [
|
terminal_stderr_re = [
|
||||||
|
|
Loading…
Reference in a new issue