Replies: 1 comment
-
Hi, we have never tried to use a database backend that Django does not natively support, and we have no plans to support MongoDB in the future. CVAT doesn't have the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have integrated the MongoDB database with CVAT.
I get "Could not login" Error when I try to login second time into CVAT portal.
I get below error in browser console
"FAILED SQL: INSERT INTO "auth_user_groups" ("user_id", "group_id") VALUES (%(0)s, %(1)s)"
I know that this is because django has not deleted the session id in database in auth_user_groups collection for first time login-logout.
How can I fix this issue and make sure I will be able login-logout multiple times without having to manually delete session id in mongoDB ,auth_user_groups collection.
Beta Was this translation helpful? Give feedback.
All reactions