Hi all,
I'm working on an app with Firebase and loving it so far. In the process, I'm setting up test scripts, one of which deletes and re-populates some registered firebase users (via .removeUser() and .createUser() calls) and saves them to my firebase at a "/users" path.
Right now, I'm doing this for 7 test users. In the past few minutes, I've gotten this error: "Error: Limits exceeded. Please contact support." I'm not calling any other services in this script and it seems to consistently fail at this user removal/creation stage, so I'm assuming it's related to Firebase. If I wait a few minutes, I'm able to run it again.
Is there a limit on deleting/registering users that I may be hitting? From checking out my dashboard, I'm very low on the displayed limits (e.g., 3 max concurrent users and <1% DB I/O capacity). If this error is as-intended, I can probably remove the .removeUser() and createUser() calls in my testing (i.e., just recreate the existing registered users in my "/users" path), but ideally, I'd like to have end-to-end tests.
Any ideas/thoughts would be greatly appreciated! And please let me know if I can provide more info.
Thanks and Happy New Year,
Liam