Skip to content

Commit

Permalink
decrease page refresh delay for load test
Browse files Browse the repository at this point in the history
  • Loading branch information
Abel Rodriguez committed Oct 3, 2023
1 parent 2594ada commit 0be778e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,6 @@ export const PipelineExecutions = ({
useInterval(async () => {
if (!pipeline) return;

if (isRequestInProgress) return;

getExecutions(appName, getExecutionsParams);
}, POLL_DELAY_MS);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ export const REQUEST_PAGE_SIZE = 5000;

export const DEFAULT_ROWS_PER_PAGE = 10;

export const POLL_DELAY_MS = 30000;
export const POLL_DELAY_MS = 5000;

export const MAX_DATE_RANGE = 9007199254740991;

0 comments on commit 0be778e

Please sign in to comment.