DB: use REALTIME routing mode

This commit is contained in:
Jannis R 2022-06-01 17:30:16 +02:00
parent e46514c5f9
commit 3c17678d9d
No known key found for this signature in database
GPG key ID: 0FE83946296A88A5

View file

@ -28,7 +28,7 @@ const transformReqBody = (ctx, body) => {
const req = body.svcReqL[0] || {}
// see https://pastebin.com/qZ9WS3Cx
req.cfg = {...req.cfg, rtMode: 'HYBRID'} // todo: use `REALTIME`?
req.cfg = {...req.cfg, rtMode: 'REALTIME'}
return body
}