Don't run change if not threading.
This commit is contained in:
parent
d1127f3220
commit
e9acb690a8
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue