#_sea_cat_
1 messages · Page 1 of 1 (latest)
What API call is triggering this? Do you have a Request ID for the call?
Here's how you can find a request ID: https://support.stripe.com/questions/finding-the-id-for-an-api-request
Find help and support for Stripe. Our support site provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
/v1/plans
Let me find the request ID
For some reason, there is no requests I was making, in the logs. Every time when my app starts, it gets the list of plans, in Python:
self.plans = [plan for plan in stripe.Plan.list()]
I guess this call fails if Stripe is not available for some reason, and may be it's not logged
Hmmmm... what's you account ID? Looks like --> acct_abc123
That seems like it could network connectivity issues. For failed requests that make it to Stripe there would be a failed request in the developer logs, but I'm also not seeing anything.
Are you able to do a network dump on your server for the period of time when this happened and inspect to see if the server had a valid internet connection?
Hmmm let me see if I can get it
But now I was experimenting with failed connection and had another error:
(Network error: ConnectionError: HTTPSConnectionPool(host='api.stripe.com', port=443): Max retries exceeded with url: /v1/plans (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x00000000382B75B0>: Failed to establish a new connection: [Errno 11004] getaddrinfo failed')))
So, when the connection itself is not good, it shows this not the previous one. But let me see if I can get the network dump