Merge pull request #15034 from Budibase/fix-worker-bson
Remove bson call from worker.
This commit is contained in:
commit
fd1dee993a
|
@ -24,7 +24,6 @@ import {
|
||||||
db.init()
|
db.init()
|
||||||
import koaBody from "koa-body"
|
import koaBody from "koa-body"
|
||||||
import http from "http"
|
import http from "http"
|
||||||
import bson from "bson"
|
|
||||||
import api from "./api"
|
import api from "./api"
|
||||||
|
|
||||||
const koaSession = require("koa-session")
|
const koaSession = require("koa-session")
|
||||||
|
@ -101,10 +100,6 @@ export default server.listen(parseInt(env.PORT || "4002"), async () => {
|
||||||
}
|
}
|
||||||
console.log(startupLog)
|
console.log(startupLog)
|
||||||
|
|
||||||
if (coreEnv.BSON_BUFFER_SIZE) {
|
|
||||||
bson.setInternalBufferSize(coreEnv.BSON_BUFFER_SIZE)
|
|
||||||
}
|
|
||||||
|
|
||||||
await initPro()
|
await initPro()
|
||||||
await redis.clients.init()
|
await redis.clients.init()
|
||||||
features.init()
|
features.init()
|
||||||
|
|
Loading…
Reference in New Issue