Running Cryosparc version 3.1.0 on a Linux Mint 20.1 with CUDA 11.2. I’m trying to clean up some accounts I created erroneously using the cli command delete_user
. Even with the username and password for the administrator account the command returns Failed to delete user - you are not an admin
.
Hi @HamishGBrown,
Thanks for reporting. Looks like there’s a bug in our code. We’ll fix this for the next release.
For the time being, you can manually delete a user by opening up an interactive python shell (cryosparcm icli
) and running the command:
db['users'].delete_one({'emails.0.address':'<email address>'})
2 Likes