tjhiggins
tjhiggins
A tmp workaround is to do the following: ```ts const upgrade = req.headers.upgrade; // https://github.com/nxtedition/node-http2-proxy/issues/56 req.method = 'GET'; req.headers.upgrade = 'websocket'; proxy.ws(req, socket, head, { hostname, port, onReq: (req, {...
@manast wanted to bump this one since as mentioned the docs seem to be incorrect at least for sandboxed processes https://github.com/OptimalBits/bull/blob/v3.22.4/REFERENCE.md#events ```ts .on('active', function(job, jobPromise){ // A job has started....
Hitting an issue about half of the time when using the local cache. Would be super useful to gracefully ignore a failure when writing to the cache. ```bash #35 [app]...
@filmaj Thank you for the quick, detailed, and helpful response! I'd already switched and started building a bolt app. It took me too long to realize that this is sdk...
@filmaj To confirm this sdk doesn't yet support an install link/oauth? Will keep watching the changelog, but any updates?
@manast I agree with @suhaotian. 1. add repeatable job with `immediately: true` -> runs without delay 2. remove repeatable via removeRepeatableByKey 3. re-add repeatable job with `immediately: true` -> runs...
@Hebilicious thanks for the quick reply! The current code is only using the path of the url for the router push: `path: new URL(url).pathname` So my callback is currently `/oidc/logout`...