We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
firebase-tools: 9.6.1
Platform: macOS
The problem is exactly as described in this StackOverflow question https://stackoverflow.com/questions/65214056/how-to-perform-large-deletes-in-the-firebase-realtime-database#comment118044022_65214056
firebase database:settings:set defaultWriteSizeLimit unlimited
Change into a directory with firebase project and run firebase database:settings:set defaultWriteSizeLimit unlimited
This will return an error.
Expected behaviour is that it results in an updated database setting.
Command returns:
✔ Successfully set setting. ✔ For database instance hierfoods-staging defaultWriteSizeLimit = ""unlimited""
The command returns: "Error: Unexpected error fetching configs at defaultWriteSizeLimit"
Patching the library in ./database/settings.js on line 23 from
./database/settings.js
return input;
to
return JSON.stringify(input);
Makes the problem go away.
The text was updated successfully, but these errors were encountered:
Thanks for reporting! We're already working on a fix here: #3217
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
[REQUIRED] Environment info
firebase-tools: 9.6.1
Platform: macOS
[REQUIRED] Test case
The problem is exactly as described in this StackOverflow question
https://stackoverflow.com/questions/65214056/how-to-perform-large-deletes-in-the-firebase-realtime-database#comment118044022_65214056
firebase database:settings:set defaultWriteSizeLimit unlimited
[REQUIRED] Steps to reproduce
Change into a directory with firebase project and run
firebase database:settings:set defaultWriteSizeLimit unlimited
This will return an error.
Expected behaviour is that it results in an updated database setting.
[REQUIRED] Expected behavior
Command returns:
✔ Successfully set setting.
✔ For database instance hierfoods-staging
defaultWriteSizeLimit = ""unlimited""
[REQUIRED] Actual behavior
The command returns: "Error: Unexpected error fetching configs at defaultWriteSizeLimit"
Patching the library in
./database/settings.js
on line 23 fromto
Makes the problem go away.
The text was updated successfully, but these errors were encountered: