mirror of
https://github.com/umami-software/umami.git
synced 2026-02-11 08:07:12 +01:00
fix collect
This commit is contained in:
parent
61df707765
commit
07d003e858
11 changed files with 41 additions and 27 deletions
|
|
@ -19,7 +19,7 @@ async function relationalQuery(sessionUuid) {
|
|||
})
|
||||
.then(async res => {
|
||||
if (redis.client && res) {
|
||||
await redis.client.set(`session:${res.sessionUuid}`, res.sessionId);
|
||||
await redis.client.set(`session:${res.sessionUuid}`, 1);
|
||||
}
|
||||
|
||||
return res;
|
||||
|
|
@ -32,7 +32,7 @@ async function clickhouseQuery(sessionUuid) {
|
|||
|
||||
return rawQuery(
|
||||
`select distinct
|
||||
session_uuid,
|
||||
session_id,
|
||||
website_id,
|
||||
created_at,
|
||||
hostname,
|
||||
|
|
@ -43,7 +43,7 @@ async function clickhouseQuery(sessionUuid) {
|
|||
language,
|
||||
country
|
||||
from event
|
||||
where session_uuid = $1`,
|
||||
where session_id = $1`,
|
||||
params,
|
||||
)
|
||||
.then(result => findFirst(result))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue