#ciri_api

1 messages · Page 1 of 1 (latest)

feral marshBOT
#

👋 Welcome to your new thread!

⏲️ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.

⏱️ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.

🔗 This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1343503013242732614

📝 Have more to share? Add more details, code, screenshots, videos, etc. below.

Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.

tranquil stratus
#

Hi there, can you share with me the details about the error?

vocal basalt
#

e = ConnectError('[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1028)')

def _handle_request_error(self, e: Exception) -> NoReturn:
    msg = (
        "Unexpected error communicating with Stripe. If this "
        "problem persists, let us know at support@stripe.com."
    )
    err = "A %s was raised" % (type(e).__name__,)
    should_retry = True

    msg = textwrap.fill(msg) + "\n\n(Network error: %s)" % (err,)
  raise APIConnectionError(msg, should_retry=should_retry) from e

E stripe._error.APIConnectionError: Unexpected error communicating with Stripe. If this problem persists,
E let us know at support@stripe.com.
E
E (Network error: A ConnectError was raised)

#

I have other async http requests in my project and i didn't encounter this issue before,

tranquil stratus
#

are you using 14.4.1 or above?

vocal basalt
#

I'm using stripe 11.4.04b, I need the betaversion for some connected components

#

I've read the issue, technically i just need to upgrade my stripe python package, right?

#

I saw that the 11.5.0 it's out, I can try installing that, and see if the issue persists

#

ok, yes that fixed my issue, thaks for your support! 🫡