-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
🐛 Bug Report: Attribute creation timed out. #160
Comments
@pingu2k4 thanks for raising this issue! 🙏🏼 It does look like there are a couple issues with the CLI: First, some of the API calls to create attributes are not awaited so the create can silently fail. For example: sdk-for-cli/lib/commands/push.js Line 556 in 91bea6e
Second, the CLI waits for all attributes to exist: sdk-for-cli/lib/commands/push.js Lines 882 to 886 in 91bea6e
but child side relationships won't be created sdk-for-cli/lib/commands/push.js Lines 877 to 879 in 91bea6e
For the second issue, I modified: sdk-for-cli/lib/commands/push.js Line 885 in 91bea6e
to collection.attributes.filter(attribute => attribute.side !== 'child').map(attribute => attribute.key) to fix the issue. I'll escalate this internally to see if we can get this fixed. |
Thank you so much for this. :) |
Fixed now as part of 6.2.2 |
👟 Reproduction steps
Running
appwrite push collections
I synced from one project, and attempted to push to a new one. I test on one of them, make my changes within appwrite, and then deploy by pushing the same changes to a different project Id. It failed half way through though.
👍 Expected behavior
not crash
👎 Actual Behavior
CLI Error:
The very first time this ran, I had the following output in my github actions:
And then running it a second time produced the following:
I am running on a linux github host, but have also just run with
--verbose --report
on my windows machine and this was the output:🎲 Appwrite version
Appwrite Cloud
💻 Operating system
Windows
🧱 Your Environment
CLI version: 6.1.0
Operation System: Windows_NT
Appwrite version: 1.6.1
Is Cloud: Yes
👀 Have you spent some time to check if this issue has been raised before?
🏢 Have you read the Code of Conduct?
The text was updated successfully, but these errors were encountered: