From 55b7a9bb7f169d35a1c18aa0585a301e00cc2aa6 Mon Sep 17 00:00:00 2001 From: Brian Bollen Date: Mon, 16 Sep 2024 22:07:33 -0600 Subject: [PATCH] Fixed websocket issue --- apps/client/src/stores/datasetSelectionTrrackedStore.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/client/src/stores/datasetSelectionTrrackedStore.ts b/apps/client/src/stores/datasetSelectionTrrackedStore.ts index 5a3ef961..a9b906b8 100644 --- a/apps/client/src/stores/datasetSelectionTrrackedStore.ts +++ b/apps/client/src/stores/datasetSelectionTrrackedStore.ts @@ -23,9 +23,9 @@ export const useDatasetSelectionTrrackedStore = defineStore( const serverUrl = ref( `${httpValue}${configStore.envServerUrl}` ); - // Location of webscoket for DuckDb as specified in NGINX + // Location of websocket for DuckDb as specified in NGINX const duckDbWebsocketUrl = ref( - `${wsValue}${configStore.envServerUrl.replace('/data', 'ws')}` + `${wsValue}${configStore.envServerUrl.replace('/data', '/ws/')}` ); // Environment based location of data retrieval for DuckDb