GithubHelp home page GithubHelp logo

lob API returning 503 throws about lob-python HOT 5 CLOSED

lob avatar lob commented on July 17, 2024
lob API returning 503 throws

from lob-python.

Comments (5)

UjjwalAyyangar avatar UjjwalAyyangar commented on July 17, 2024

@justmobilize Are you still experiencing this issue?

payload = resp.json() is only thrown when the status is 200, for 503 it raises APIError with appropriate message

from lob-python.

justmobilize avatar justmobilize commented on July 17, 2024

Looking at code on master:

    def parse_response(self, resp):
        if resp.status_code == 504:
            raise error.APIConnectionError(resp.content or resp.reason,  # pragma: no cover
                                           resp.content, resp.status_code, resp)

        payload = resp.json()
        if resp.status_code == 200:
            return payload
        elif resp.status_code == 401:
            raise error.AuthenticationError(payload['error']['message'],
                                            resp.content, resp.status_code, resp)
        elif resp.status_code in [404, 422]:
            raise error.InvalidRequestError(payload['error']['message'],
                                            resp.content, resp.status_code, resp)
        else:  # pragma: no cover
            raise error.APIError(payload['error']['message'], resp.content, resp.status_code, resp)

it parses before the resp.status_code is evaluated. I would imagine it better to handle the 503 in the same way as the 504 since those are both from the web server, not the application

from lob-python.

UjjwalAyyangar avatar UjjwalAyyangar commented on July 17, 2024

Agreed.
@ami is anyone working on this?
If no, then I can send in a pull request to fix this.

from lob-python.

pdufour avatar pdufour commented on July 17, 2024

Closed due to inactivity, if it is still an issue please re-open. Thank you!

from lob-python.

justmobilize avatar justmobilize commented on July 17, 2024

This is still an issue @pdufour

from lob-python.

Related Issues (20)

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.