Eliza Weisman

Results 637 comments of Eliza Weisman

Yeah, since, as @ipetkov pointed out, the `task::Builder` API will have fallible spawn methods, I think the best way to add support for attempting to spawn a blocking task only...

@olix0r pointed out that we may alternatively just want to always allow traffic from a pod's own IP, in which case this could be implemented pretty simply in the proxy.[^1]...

Okay, so one update on this is that it turns out the reason the integration tests were failing until commit 85e8a4fdb7daed5f1df1f60189637b732b03dbec is that the new policies weren't allowing Prometheus to...

Another potential alternative could be to just allow a list of `targetRef`s in the AuthorizationPolicy resource, similarly to how [HTTPRoute accepts a list of `parentRefs`](https://linkerd.io/2.12/reference/authorization-policy/#spec-1): ```yaml --- kind: AuthorizationPolicy metadata:...

Hyper is behaving as documented here. The `retry_canceled_requests` setting *only* retries requests on connections that were closed *before* Hyper began writing a new request on that connection. Per the docs:...

Interesting, thanks for the report --- this definitely seems like a bug in the console. Looking at your reproduction (https://github.com/webrtc-rs/webrtc/pull/284), I see you've included a screenshot of the task details...

> * The ID column in the task list/ID within the task pane inside the details view(this changed when I restarted console, was 5 then 38) > > * The...

The logic for tracking polls is in the `console_subscriber::ConsoleLayer` type's `on_enter` and `on_exit` callbacks, here: https://github.com/tokio-rs/console/blob/da0e9724fa132595e2085cfb08ac7bfbf10542ba/console-subscriber/src/lib.rs#L767-L850 That's probably a good place to start adding some `dbg!`s or something, if you're...