Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

atlassian-connect-express - Error: Unregistered adapter value 'jugglingdb'

Kirubel Tesfaye
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
June 8, 2018

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?

 

2 answers

1 vote
Ross Barbieri {Appfire}
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
July 18, 2018

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.

0 votes
Nic Brough -Adaptavist-
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
June 12, 2018

Revert the npm package, or modify your code to cope with the new version.

Suggest an answer

Log in or Sign up to answer