Description
[READ] Step 1: Are you in the right place?
Issues filed here should be about bugs for a specific extension in this repository.
If you have a general question, need help debugging, or fall into some
other category use one of these other channels:
- For general technical questions, post a question on StackOverflow
with the firebase tag. - For general Firebase discussion, use the firebase-talk
google group. - To file a bug against the Firebase Extensions platform, or for an issue affecting multiple extensions, please reach out to
Firebase support directly.
[REQUIRED] Step 2: Describe your configuration
- Extension name: delete-user-data
- Extension version: 0.1.13
- Configuration values (redact info where appropriate):
- Cloud Storage paths: {DEFAULT}/files/{UID},{DEFAULT}/profile_images/{UID}.png
[REQUIRED] Step 3: Describe the problem
I checked this issue, I had the same problem and changed {DEFAULT}
to project-id.appspot.com
. This didn't help.
The problem is that folder with UID
at {DEFAULT}/files/{UID}
will be deleted, but UID.png
at {DEFAULT}/profile_images/{UID}.png
won't be recognized and in the log it says the path is not found.
Steps to reproduce:
What happened? How can we make the problem occur?
I noticed if we have space after ,
between paths it fails. For example:
{DEFAULT}/a/{UID}, {DEFAULT}/b/{UID}.png, {DEFAULT}/c/{UID}
a
will be OK, but b
and c
will not be found by the extension.
When I removed the space after ,
it is OK and a
, b
and c
are recognized by the extension.
Expected result
Maybe it would be better if the spaces were ignored or at least mentioned in the description.
Actual result
Comma-separated paths will not be recognized correctly if there is a space after them.