Skip to content

Commit

Permalink
fix for ansible issue-152 (#154)
Browse files Browse the repository at this point in the history
* fix for ansible issue-152

* in changelog file removed empty line

---------

Co-authored-by: prasada.reddy <[email protected]>
  • Loading branch information
prasadapr and prasada.reddy authored Nov 9, 2023
1 parent ece6c28 commit 5a12a2c
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 2 deletions.
9 changes: 9 additions & 0 deletions changelogs/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ Ansible Network Collection for Dell EMC SmartFabric OS10 Release Notes

.. contents:: Topics

v1.2.3
======

Bugfixes
--------

- Fixed issue in os10.py for show tech-support command fail in version from 2.10 to 2.15(https://github.com/ansible-collections/dellemc.os10/issues/152)


v1.2.2
======

Expand Down
10 changes: 10 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -174,3 +174,13 @@ releases:
that have been added after the release of ``dellemc.os10`` 1.2.1.'
release_date: '2023-10-12'
1.2.3:
changes:
bugfixes:
- Fixed issue in os10.py for show tech-support command fail in version from 2.10 to 2.15 (https://github.com/ansible-collections/dellemc.os10/issues/152)
release_summary: 'This is the bug fix of the ``dellemc.os10`` collection.
This changelog contains all changes to the modules in this collection
that have been added after the release of ``dellemc.os10`` 1.2.2.'
release_date: '2023-11-09'
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ name: os10
namespace: dellemc
readme: README.md
tags: [dell, dellemc, os10, emc, networking]
version: 1.2.2
version: 1.2.3
repository: https://github.com/ansible-collections/dellemc.os10
documentation: https://github.com/ansible-collections/dellemc.os10/tree/master/docs
homepage: https://github.com/ansible-collections/dellemc.os10
Expand Down
2 changes: 1 addition & 1 deletion plugins/terminal/os10.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class TerminalModule(TerminalBase):
re.compile(br"invalid input", re.I),
re.compile(br"(?:incomplete|ambiguous) command", re.I),
re.compile(br"connection timed out", re.I),
re.compile(br"[^\r\n]+ not found", re.I),
re.compile(br"% Error(.+?)not found", re.I),
re.compile(br"'[^']' +returned error code: ?\d+"),
]

Expand Down

0 comments on commit 5a12a2c

Please sign in to comment.