Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,553,178
Community Members
 
Community Events
184
Community Groups

Atlassian Connect Express: Unable to store tenant data in mongodb

Edited

I am creating a JIRA add-on using atlassian-connect express framework and for production environment i want to attach a database to store tenant details which is generated when the add-on is installed in the cloud instance of JIRA.

I have create mongodb instance in azure and got the URL. I have also installed following npm packages:

 "jugglingdb-mongodb": "^0.2.0" ,

"mongodb": "^3.0.7",

config.json file

"store": { "adapter": "jugglingdb", 
"type": "mongodb",
"url": "mongodb://my2db:********@my2db.documents.azure.com:10255/?ssl=true" }

app.js

var mongoClient = require("mongodb").MongoClient;

mongoClient.connect("mongodb://my2db:********@my2db.documents.azure.com:10255/?ssl=true"

, function (err, db) { // db.close();}); 

While installation i am getting below error:

The add-on host did not respond when we tried to contact it at "https://723c7g37.ngrok.io//installed" during installation (the attempt timed out). Please try again later or contact the add-on vendor.

What else i need to do to make it working? Please help me here.

0 comments

Comment

Log in or Sign up to comment