Skip to content

Commit

Permalink
Optimize threshold from 100 -> 350 (#4876)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom-Szendrey authored Sep 20, 2024
1 parent fe436c1 commit 403d9ef
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const poller = new Poller();
const pollResult = async (runId: string) => {
poller
.setInterval(5000)
.setThreshold(100)
.setThreshold(350)
.setPollAction(async () => pollAction(runId))
.setProgressAction((data: Simulation) => {
if (runId === props.node.state.inProgressOptimizeId && data.updates.length > 0) {
Expand Down

0 comments on commit 403d9ef

Please sign in to comment.