1
0
Fork 0
mirror of synced 2024-07-02 04:50:44 +12:00

Don't run change if not threading.

This commit is contained in:
mike12345567 2021-12-15 12:26:29 +00:00
parent d1127f3220
commit e9acb690a8

View file

@ -3,6 +3,10 @@ const CouchDB = require("../db")
const { init } = require("@budibase/auth")
exports.threadSetup = () => {
// don't run this if not threading
if (env.isTest() || env.DISABLE_THREADING) {
return
}
// when thread starts, make sure it is recorded
env.setInThread()
init(CouchDB)