Skip to content

Commit

Permalink
Fixed websocket issue
Browse files Browse the repository at this point in the history
  • Loading branch information
bbollen23 committed Sep 17, 2024
1 parent 3057d7e commit 55b7a9b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/client/src/stores/datasetSelectionTrrackedStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ export const useDatasetSelectionTrrackedStore = defineStore(
const serverUrl = ref<string>(
`${httpValue}${configStore.envServerUrl}`
);
// Location of webscoket for DuckDb as specified in NGINX
// Location of websocket for DuckDb as specified in NGINX
const duckDbWebsocketUrl = ref<string>(
`${wsValue}${configStore.envServerUrl.replace('/data', 'ws')}`
`${wsValue}${configStore.envServerUrl.replace('/data', '/ws/')}`
);

// Environment based location of data retrieval for DuckDb
Expand Down

0 comments on commit 55b7a9b

Please sign in to comment.