Skip to content

Commit 24b7b58

Browse files
committed
fix
1 parent cd6b6e1 commit 24b7b58

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

docker-start-console.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ init() {
1010
echo "Initializing console..."
1111
inited="1"
1212
curl --silent --show-error http://$(hostname -f):3000/api/admin/events-log-init?token=$CONSOLE_INIT_TOKEN
13+
echo ""
1314
fi
1415
}
1516

@@ -57,7 +58,7 @@ healthcheck() {
5758
if [ -f healthcheck-result ]; then
5859
cat healthcheck-result
5960
fi
60-
echo "Running init..."
61+
echo ""
6162
init
6263
else
6364
if [ "$http_code" = "000" ]; then

webapps/console/pages/api/admin/events-log-init.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { checkRawToken, getLog } from "juava";
33
import { clickhouse } from "../../../lib/server/clickhouse";
44
import { z } from "zod";
55

6-
export const log = getLog("events-log-trim");
6+
export const log = getLog("events-log-init");
77

88
export default createRoute()
99
.GET({

0 commit comments

Comments
 (0)