소스 검색

reduce workers

Joystream Stats 3 년 전
부모
커밋
59b7f246b7
1개의 변경된 파일2개의 추가작업 그리고 3개의 파일을 삭제
  1. 2 3
      src/App.tsx

+ 2 - 3
src/App.tsx

@@ -164,15 +164,14 @@ class App extends React.Component<IProps, IState> {
   async processTask() {
     // check status
     let { tasks } = this.state;
-    if (tasks > 5) return;
-    if (tasks < 5) setTimeout(() => this.processTask(), 0);
+    if (tasks > 1) return;
+    if (tasks < 1) setTimeout(() => this.processTask(), 0);
 
     // pull task
     let { queue } = this.state;
     const task = queue.shift();
     if (!task) {
       if (!tasks) this.setState({ fetching: "" });
-
       return;
     }