andywer / andywer/threads.js

Tasks stuck and pool blocked

未關閉
#254 18 則留言 0 個 reaction 已指派 0 人 在 GitHub 檢視
help wanted question
主要語言
TypeScript
星號
3.5k
分支
173
PR 合併指標
30 天內沒有已合併 PR

描述

Hello, I'm having this weird behaviour where tasks are queued but the function itself is not running, and runningTasks just end up pilling up...
Keep in mind that I have not changed anything in my code..

```js
console.log('1')
this[pool].queue(async worker => {
console.log('2')
let m = worker[method]
console.log(m)
if (!m) return "Method doesn't exist";
console.log('3')
q = await m(item)
console.log('4')
return q;
})
console.log('5')
await this[pool].completed()
console.log('6')
return q;
```

and from the worker file:

```
const workerFunctions= {
async gen(c) {
console.log('FUNCTION RUNNING')
..................
}
...........
}
expose(workerFunctions)
```

Behaviour:
**1
2
[Function]
3
5**

The thing is, the exposed function is not being executed at all (**FUNCTION RUNNING** is never logged) and the pool just ends up having more and more runningTasks pilling up....

貢獻指南

這個儲存庫沒有索引到貢獻指南

評估

這個 Issue 還沒有評估資料。

把新 issue 寄到你的電子郵件信箱

精選適合新手參與的 GitHub issue 摘要。