Skip to content

Commit 75146bb

Browse files
authored
Merge pull request kubernetes-sigs#3006 from headlamp-k8s/disable-multiplexer
frontend: Disable multiplexer due to an issue
2 parents 452cd52 + d629748 commit 75146bb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

frontend/src/helpers/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,8 @@ 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-
return import.meta.env.REACT_APP_ENABLE_WEBSOCKET_MULTIPLEXER !== 'false';
360+
// TODO Reenable after #2805 and #2970 are fixed
361+
return import.meta.env.REACT_APP_ENABLE_WEBSOCKET_MULTIPLEXER === 'true';
361362
}
362363

363364
/**

0 commit comments

Comments
 (0)