Hi Appwrite team, I am running into rate limits where only part of my 77 functions are being successfully migrated (only 50 went through) via the Migration tab on the console.
Alternatives I have tried in another fresh project instance were to directly appwrite push from the cli but again I am rate limited after X number of successful function pushes.
I've tried waiting for 4 hours to try pushing the missing functions again, but to no avail, I'm still seeing the rate limit error.
Deploying the function via the console with a git repo also gets a 429 error with the same request to https://sgp.cloud.appwrite.io/v1/functions
Recommended threads
- How to use appwrite types
I am using appwrite types --language ts ./types to generate the types yielding something like: ``` import type { Models } from 'node-appwrite'; // This file i...
 - Internal server Error when trying to exe...
When executing the function locally it works fine, but when the function is deployed I get this error: ```requests.exceptions.HTTPError: 500 Server Error: Inter...
 - Dynamic Roles
I tried to store a row with this permissions: permissions.push( Permission.read(Role.users("verified")), Permission.write(Role.label(`c-${calend...