mirror of
https://github.com/umami-software/umami.git
synced 2026-02-10 23:57:12 +01:00
remove CH import
This commit is contained in:
parent
f3135ee867
commit
0387cf0da0
1 changed files with 2 additions and 3 deletions
|
|
@ -4,12 +4,11 @@ import { uuid } from 'lib/crypto';
|
||||||
import redis, { DELETED } from 'lib/redis';
|
import redis, { DELETED } from 'lib/redis';
|
||||||
import { getClientInfo, getJsonBody } from 'lib/request';
|
import { getClientInfo, getJsonBody } from 'lib/request';
|
||||||
import { createSession, getSessionByUuid, getWebsiteByUuid } from 'queries';
|
import { createSession, getSessionByUuid, getWebsiteByUuid } from 'queries';
|
||||||
import clickhouse from 'lib/clickhouse';
|
|
||||||
|
|
||||||
export async function getSession(req) {
|
export async function getSession(req) {
|
||||||
const { payload } = getJsonBody(req);
|
const { payload } = getJsonBody(req);
|
||||||
const hasRedis = redis.client;
|
const hasRedis = process.env.REDIS_URL;
|
||||||
const hasClickhouse = clickhouse.client;
|
const hasClickhouse = process.env.CLICKHOUSE_URL;
|
||||||
|
|
||||||
if (!payload) {
|
if (!payload) {
|
||||||
throw new Error('Invalid request');
|
throw new Error('Invalid request');
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue