Skip to content

Commit

Permalink
Merge pull request #33 from cisco-ie/bumpver
Browse files Browse the repository at this point in the history
Bump version to v1.0.3
  • Loading branch information
remingtonc authored Oct 26, 2019
2 parents 39a2c6c + efc7bf8 commit df05d81
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cisco_gnmi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@
from .xe import XEClient
from .builder import ClientBuilder

__version__ = "1.0.2"
__version__ = "1.0.3"
4 changes: 3 additions & 1 deletion src/cisco_gnmi/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,9 @@ def construct(self):
if self.__ssl_target_name_override is None:
if not self.__root_certificates:
raise Exception("Deriving override requires root certificate!")
self.__ssl_target_name_override = get_cn_from_cert(self.__root_certificates)
self.__ssl_target_name_override = get_cn_from_cert(
self.__root_certificates
)
logging.warning(
"Overriding SSL option from certificate could increase MITM susceptibility!"
)
Expand Down

0 comments on commit df05d81

Please sign in to comment.