I was able to get this cleaned up after trying something from another post (All new jobs get queued, don't run):
eval $(cryosparc env)
source config.sh
mongo localhost:$CRYOSPARC_MONGO_PORT
Now in the database shell:
use meteor
db.jobs.update({status:"queued"}, {$set:{status:"killed"}})
exit
I had tried that earlier but failed to repeat the “db.jobs.update” command until all the queued jobs were marked as killed. Once that was done, we were able to once again queue and run jobs.
Steve