-
Notifications
You must be signed in to change notification settings - Fork 374
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
mongodump. aclallows_* collections are not included #53
Comments
Can you share some configuration details? Did you try playing with the useSingle flag at all? |
Is it possible to convert an existing project to useSingle flag without having to start over? |
I think it is due to the fact that adding the resources to the module, the validation with the middleware does not seems to work without including the starting slash.
and adding the route as follows doesn't work
I'll get
Doing this, means that the collections created in the mongodb will looks like
and then, the mongodump command output the message |
Looks like if we do a mongodump the collection names that start with aclallows_ are not included in the dump.
Can it be because the names includes /?
I have tables that are called for instance
aclallows_/sites/0
Based on MongoDB null and / should not be used in the name of the collection. I would highly suggest that the code be refactored to use a different character besides the /. Consider a legal place holder in the collection name.
The text was updated successfully, but these errors were encountered: