Git Product home page Git Product logo

Comments (3)

netgab avatar netgab commented on July 28, 2024

As a follow up:
Based on the documentation, the connect method should not do anything:
https://pubhub.devnetcloud.com/media/rest-connector/docs/apidoc/rest.connector.libs.html#iosxe

Connecting via RESTCONF does not require contacting the device.

Connecting via RESTCONF does not require contacting the device. This does nothing

In fact, the connect method sends a GET request to https://:443
So in any case, there is an inconsistence between the docstring and the actual implementation.

From my point of view, a quick win would be to remove lines 133 to 148

Furthermore a class paramter is needed for validation. If using my quick fix from above, the following line needs to be included as well in the connect method.

self.session.verify = False

It would be much cleaner to allow the user to paramterize certificate validation.
For example by adding the parameter verify=True to the connect method.

    def connect(self,
                timeout=30,
                default_content_type='json',
                verbose=False,
                port="443",
                protocol='https',
                verify=True):
    # ...
    self.session = requests.Session()
    self.session.verify = verify

from rest.

ParimiNeeraja avatar ParimiNeeraja commented on July 28, 2024

Hello @netgab ,

We are looking into this issue. Will get back soon.

from rest.

netgab avatar netgab commented on July 28, 2024

Problem solved ... code merged into master

from rest.

Related Issues (2)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.