rysi3k
rysi3k
> try this -> import * as validation from "express-validation" I have no problem with fix this issue, but I'm wondering what prevents ts-migrate from migrate require -> import and...
Hey @NickHeiner which codemod are You suggesting?
Nah, when using: ``` body: r.method === 'GET' || r.method === 'HEAD' ? null : r, ``` I've got error: `TypeError: Response body object should not be disturbed or locked...
Hmm I'm testing using only curl, without compressing, so it is plain text imo. ``` curl -v -i -X POST \ -H "Content-Type:application/json" \ -d \ '{"foo":"3"}' \ 'http://127.0.0.1:3000/test' Note:...
Any news with this feature?
Hello, My scenario: 1. Job is processing on remote server, my code only supervising it (requests for status every 15s) 2. Supervisor process is restarted/crashed 3. On process start I...
Yes, supervisor where bull works crashes. So, there is different `queue.token`, this causes job stalled.
Hello. I missed important part. My `process` function is defined as: 1. Start request to remote server 2. Checks every 15s to get result 3. If remote server will return...
Here is my simplified code, it could resolve any confusions. ```const worker = redis.getWorkerObject(); queue.on('failed', () => { worker.setCurrentJobId(0); }).on('completed', () => { worker.setCurrentJobId(0); }); start(); async start() { //...
I have different "process" method in normal processing (start + checkStatus) and durign resuming (only checkStatus). In built in stalled method it is not possible to achive this or I'm...