Skip to content
Snippets Groups Projects
Unverified Commit b78222ea authored by Elton Okawa's avatar Elton Okawa Committed by GitHub
Browse files

Fix/logs keep pooling after unmount (#44585)

parent ba55d38a
No related branches found
No related tags found
No related merge requests found
......@@ -97,6 +97,20 @@ describe("Logs", () => {
expect(screen.getByText(errMsg)).toBeInTheDocument();
});
});
it("should stop polling on unmount", async () => {
fetchMock.get("path:/api/util/logs", [log]);
const { unmount } = render(<Logs />);
expect(
await screen.findByText(new RegExp(log.process_uuid)),
).toBeInTheDocument();
unmount();
act(() => {
jest.advanceTimersByTime(1100); // wait longer than polling period
});
expect(utilSpy).toHaveBeenCalledTimes(1);
});
});
describe("log processing", () => {
......
import { useInterval } from "@mantine/hooks";
import { useState, useEffect, useRef, useCallback } from "react";
import { useMount } from "react-use";
import { useMount, useUnmount } from "react-use";
import { t } from "ttag";
import _ from "underscore";
......@@ -50,10 +50,11 @@ export function usePollingLogsQuery(pollingDurationMs: number) {
isMountedRef.current = true;
fetchLogs();
pollingInterval.start();
return () => {
isMountedRef.current = false;
pollingInterval.stop();
};
});
useUnmount(() => {
isMountedRef.current = false;
pollingInterval.stop();
});
return { loaded, error, logs };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment