Skip to content

Commit 9435e93

Browse files
committed
fix terminated cluster states
1 parent 26cab4f commit 9435e93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/compass-web/src/entrypoint.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ const WithConnectionsStore: React.FunctionComponent<{
234234
useEffect(() => {
235235
const intervalId = setInterval(() => {
236236
void actions.refreshConnections();
237-
}, /* Matches default polling intervals in mms codebase */ 5_000);
237+
}, /* Matches default polling intervals in mms codebase */ 60_000);
238238
return () => {
239239
clearInterval(intervalId);
240240
};

0 commit comments

Comments
 (0)