Azure DocumentDB and Meteor Accounts

My Meteor app is connected to DocumentDB database, I am trying to create Meteor accounts using Accounts.createUser ({}), but I cannot login for the user because I was automatically logged out. and resume.TokenLogin are not removed from the database. I am trying to compare this behavior with local MongoDB, I found multiple collections are created in local MongoDB: users , meteor_accounts_loginServiceConfiguration and system.indexes , but only users and meteor_accounts_loginServiceConfiguration are created in docuementDB.

I don't know if the problem is with the system.indexes build or if I need to add something so that I don't log out automatically after every authentication!

+3


source to share





All Articles