Hello guys,
I have a function which should update documents in a database. During that update phase I am facing this error:
Error updating notifications: HTTPSConnectionPool(host='cloud.appwrite.io', port=443): Max retries exceeded with url: /v1/databases/<ID>/collections/<ID>/documents (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7f9e14e95160>: Failed to resolve 'cloud.appwrite.io' ([Errno -3] Try again)"))
I am not sure where this error comes from and how to solve it. I checked for possible rate limits and found that for function there are no rate limits. At the moment I have now idea what is wrong 😕
Has anybody an idea how to solve it? Kind regards
HTTPSConnectionPool(host='cloud.appwrite.io', port=443)
Recommended threads
- Update User Error
```ts const { users, databases } = await createAdminClient(); const session = await getLoggedInUser(); const user = await users.get(session.$id); if (!use...
- Our Appwrite organization is suspended
Please give support regarding this , no app is working now , please solve my issue and give support , no one is replying in message section or email.
- How to Avoid Double Requests in function...
I'm currently using Appwrite's `functions.createExecution` in my project. I want to avoid double requests when multiple actions (like searching or pagination) a...