mirror of
https://github.com/umami-software/umami.git
synced 2026-02-12 08:37:13 +01:00
Removed custom date format. Use ISO string everywhere.
This commit is contained in:
parent
0bd57bb158
commit
04de691893
7 changed files with 7 additions and 25 deletions
|
|
@ -136,9 +136,9 @@ async function clickhouseQuery(data: {
|
|||
...args
|
||||
} = data;
|
||||
const { insert } = clickhouse;
|
||||
const { getDateFormat, sendMessage } = kafka;
|
||||
const { sendMessage } = kafka;
|
||||
const eventId = uuid();
|
||||
const createdAt = getDateFormat(new Date());
|
||||
const createdAt = new Date().toISOString();
|
||||
|
||||
const message = {
|
||||
...args,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue