Hi there,
I have accidentally update my jugglingdb-sqlite3 npm package while in my project directory using --save flag, then my application started showing the following error.
Error: Unregistered adapter value 'jugglingdb'
Is there a way to fix this?
If you updated Atlassian Connect Express and are using the default, you'll need to change your adaptor from "jugglingdb" to "sequelize". See release notes for 3.0 for details.
If you are using npm:
npm install --save sequelize
Then change the "store" settings for your environment in config.json, for example my dev env:
"store": {
"adapter": "sequelize",
"dialect": "sqlite",
"storage": "store.db"
}
Here is the npm listing for sequelize, there are some examples there as well.
Revert the npm package, or modify your code to cope with the new version.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.