This commit is contained in:
Carl-Gerhard Lindesvärd
2024-08-26 13:14:36 +02:00
parent 1edd63e01e
commit 336ba116a1

View File

@@ -38,14 +38,14 @@ export async function postEvent(
ua,
});
// this will ensure that we don't have multiple events creating sessions
const locked = await getRedisCache().set(
`request:priority:${currentDeviceId}-${previousDeviceId}`,
'locked',
'EX',
10,
'NX'
);
// // this will ensure that we don't have multiple events creating sessions
// const locked = await getRedisCache().set(
// `request:priority:${currentDeviceId}-${previousDeviceId}`,
// 'locked',
// 'EX',
// 10,
// 'NX'
// );
eventsQueue.add('event', {
type: 'incomingEvent',
@@ -60,7 +60,7 @@ export async function postEvent(
geo,
currentDeviceId,
previousDeviceId,
priority: locked === 'OK',
priority: false,
},
});