Dan O'Reilly
Dan O'Reilly
Yes, the most recent versions of `aiohttp` keep the headers in a case-insensitive dict, so there's no need to iterate at all. I suppose you might want to keep the...
Use `from aioprocessing.process import AioProcess` instead. `aioprocessing` mirrors the `multiprocessing` library here - the objects exposed from the top-level module namespace are functions, not classes. The actual class is in...
@TanyaEleventhGoddess Ah, looks like the implementation of `multiprocessing` has changed since I created `aioprocessing`, and no longer uses functions for the top-level imports. In any case, `aioprocessing` still does use...
FWIW, I was also bitten by this when I started making use of the local map in my codebase. In general, I found lots of bugs where data in the...
Thanks, @akarnokd. It seems their Java Agent does two manipulations. One is to [add call site info to every operator](https://github.com/reactor/reactor-core/blob/main/reactor-tools/src/main/java/reactor/tools/agent/CallSiteInfoAddingMethodVisitor.java): ``` /** * Adds callSite info to every operator call...
Hi @bergundy, I'm a co-worker of @YufeeXing. Let me provide a little more background on why he's trying to do this. Apologies, the explanation is a little bit long! First...
@bergundy According to [the docs](https://docs.temporal.io/security/#authorize-api-calls), a ClaimMapper plugin's AuthInfo input parameter is populated using the gRPC "authorization" header: > The Temporal Server [expects](https://docs.temporal.io/security/#authentication) an authorization gRPC header with an authorization...
I'm interested in implementing this one. I spent a few hours yesterday doing a little PoC for this, and have simple prefix-based matching (like ZeroMQ) working for the local EventBus....