Jascha Brinkmann

Results 41 comments of Jascha Brinkmann

This is quite annoying as I have a couple of functions which need to be long running and I can't properly debug them locally. I have searched where this 60...

Hey @vinioliveira, I am seeing very high CPU usage as well and thats why I found your issue. But I am not using `[email protected]` but the latest `[email protected]`. Agenda version...

Thanks, I switched to Bull. Agenda is great depending on your use case, but if you have lots of small tasks that need to run as fast as possible it’s...

To follow up on my previous comment, while `bullmq` does seem like a better option for a lot of messages that need to execute as fast as possible, I have...

Any reason this PR isn't getting any attention despite lots of interest? @simison @OmgImAlexis @rschmukler

I am seeing the same issue. `nextRunAt` should be `null` but is set to a value. This basically makes it impossible to tell if I still have a running or...

For what it's worth there is a workaround, simply doing a true native query: ```js // assuming you use mongoose, otherwise just use your mongodb driver connection directly import mongoose...

> @jdt3969's [above solution](#issuecomment-500480450) worked for me after I realised it was looking for a property in package.json called `aliases` instead of module-alias's documented `_moduleAliases` (I prefer jdt3969's `aliases`). Worked...

Any update? :)

@MayasHaddad you need to add the key as well: ```diff createClient({ url, socket: { tls: true, cert: readFileSync( 'redislabs_credentials/redislabs_user.crt', ), + key: readFileSync( + 'redislabs_credentials/redislabs_user_private.key', + ), ca: readFileSync( 'redislabs_credentials/redislabs_ca.pem',...