Skip to content

Commit 25372f6

Browse files
authored
Merge pull request #2962 from headlamp-k8s/enable-websocket
frontend: helpers: Enable websocket multiplexer
2 parents 16529c8 + 4a3029d commit 25372f6

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

frontend/src/helpers/index.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -357,8 +357,7 @@ function loadTableSettings(tableId: string): { id: string; show: boolean }[] {
357357
* defaults to true. This is a feature flag to enable the websocket multiplexer.
358358
*/
359359
export function getWebsocketMultiplexerEnabled(): boolean {
360-
// TODO Reenable after #2936 is fixed
361-
return import.meta.env.REACT_APP_ENABLE_WEBSOCKET_MULTIPLEXER === 'true';
360+
return import.meta.env.REACT_APP_ENABLE_WEBSOCKET_MULTIPLEXER !== 'false';
362361
}
363362

364363
/**

0 commit comments

Comments
 (0)