Leo Antunes
Leo Antunes
This PR is not ideal. I originally overlooked the fact that `inspect.signature` is only available in py3 and py2's counterpart - `inspect.getargspec` - doesn't work with decorators. I personally would...
My concrete case is about abstracting common behaviour across multiple RPC methods. Especially the case where some common pre-processing has to be done to structures that are then used inside...
hey @xxxserxxx! It would be indeed cool to have this possibility, but unfortunately adding "proper" mobile support requires significant work, which I'm unlikely to be able to invest in the...
sorry, I'm bit swamped, as always :sweat: I understand the motivation, but I'm not sure about the particular solution. Why not something a bit more general like [WithBackoffFunc](https://pkg.go.dev/github.com/hetznercloud/hcloud-go/v2/hcloud#WithBackoffFunc)?
ah, you mean the fact that the retries are endless? Yes, that's a bit of a problem. But I'd suggest making that improvement at the `hcloud-go` side? Adding a way...
Preliminary results from the included benchmark, which represents simple usage via io.Copy: ``` goos: linux goarch: amd64 pkg: golang.org/x/exp/mmap cpu: 12th Gen Intel(R) Core(TM) i7-1250U │ old.bench │ new.bench │...
The windows test failure seems unrelated? Maybe flaky? As for the coverage decrease, I could add some tests for this case if the general approach seems reasonable.
Sorry for the delay; vacation got in the way :wink: My javascript is pretty rusty (no :crab: pun intended), but AFAICT the js integration works slightly differently. It [always uses...
I've reworked the PR with a slightly different solution. Now instead of trying to use a sampler, we address the issue at the middleware level. The problem - as I...
Ok, third time is a charm! The `sentry.SpanOption` doesn't quite work, because it can't modify it's received context. So we have to go with yet another middleware, which sits as...