How To
Data not coming in TW
- Ask for the generator and response urls.
- Match the productIds of both the urls. (Questionnaire generated in a product will be visible in that product only).
- If still not resolved then check the dept used in url and depts tagged with the questionnaire.
Link giving Security threats
- Ask Yogesh to fix the certificate or any other security related issue.
Data not coming in payslip
- Check the api calls and its response.
Data not coming in someone's system
- Check in their system if something is getting blocked by Bit defender
vrslick link is slow to access
- Added below 3 lines of code in MongoClient.connect method.
MongoClient.connect(this.connectionURL, {
useNewUrlParser: true, // It was there before.
useUnifiedTopology: true, // Newly Added.
serverSelectionTimeoutMS: 10000, // Newly Added.
socketTimeoutMS: 20000, // Newly Added.
})
- MongoClient.connect is in node_mongo.js file.
- node_mongo.js file is under mod-qst-server.
- commit the changes and take git pull.
- Do pm2 restart.