Aaron Piotrowski

Results 148 comments of Aaron Piotrowski

I think we could drop MD5, but let's keep SHA1 for now, since it seems openssl 1.1 and 3.0 are still producing a SHA1 fingerprint.

If you want to limit the number of tasks being submitted to the pool, consider using some of our abstractions for queues, mutexes/semaphores, or concurrency. You can find these in...

Multiple tasks are being executed because you're creating the tasks before awaiting the tasks to be completed. Awaiting is what will apply back-pressure to the pipeline (or rather the underlying...

Are you receiving this on process shutdown? That's the only reason I can think of why this would be happening outside of explicitly calling `shutdown()` on `ContextWorkerPool`.

Came back around to looking at this. My thinking is still the same – something called `shutdown()` or `kill()` on the pool instance to cause this exception. Please take a...

Fixed this some time ago, on-close callbacks are now executed in an event-loop microtask.

Sounds like this issue was due to something external to this library, so I'm closing this issue.

Revisiting this issue while preparing for the v2.0 release and realized I was incorrect in my last comment, this is currently possible in both `1.x` and `2.x`. Pass a custom...

The event loop is no longer discarded between each test in AMPHP v3 and therefore in v2.x of this library, so this should no longer be an issue. That being...

Apologies for leaving this PR open for so long. Thanks!