From aeebec83e285614a34b132a58ede537c3b03c2a0 Mon Sep 17 00:00:00 2001 From: arnoldknott Date: Fri, 6 Dec 2024 18:26:26 +0100 Subject: [PATCH] ci: retrigger deploy chain with minor changes --- backendAPI/src/core/cache.py | 7 ------- frontend_svelte/src/components/Chat.svelte | 9 +-------- 2 files changed, 1 insertion(+), 15 deletions(-) diff --git a/backendAPI/src/core/cache.py b/backendAPI/src/core/cache.py index 31316220..0495cf89 100644 --- a/backendAPI/src/core/cache.py +++ b/backendAPI/src/core/cache.py @@ -4,13 +4,6 @@ # print("=== cache.py started ===") -# print("=== config.REDIS_HOST ===") -# print(config.REDIS_HOST) -# print("=== config.REDIS_PORT ===") -# print(config.REDIS_PORT) -# print("=== config.REDIS_SESSION_DB ===") -# print(config.REDIS_SESSION_DB) - redis_session_client = redis.Redis( host=config.REDIS_HOST, port=config.REDIS_PORT, diff --git a/frontend_svelte/src/components/Chat.svelte b/frontend_svelte/src/components/Chat.svelte index 50e555da..947480e5 100644 --- a/frontend_svelte/src/components/Chat.svelte +++ b/frontend_svelte/src/components/Chat.svelte @@ -10,14 +10,7 @@ let { connection, children }: { connection: SocketioConnection; children: Snippet } = $props(); const socketio = new SocketIO(connection); - // let socketio = $state() - // $effect(() => { - // console.log('Chat.svelte - getContext - backend configuration') - // console.log(getContext('backendAPIConfiguration')) - // // console.log('Chat.svelte - $page.data.backendAPIConfiguration') - // // console.log($page.data.backendAPIConfiguration) - // socketio = new SocketIO(connection); - // }) + let new_message = $state(''); let old_messages: string[] = $state([]);