Jad K. Haddad

Results 8 comments of Jad K. Haddad

I think this limit is set by containerd and I found no way to set it higher

@kflynn I'm worried about the heartbeat because it only looks for a Prometheus job called [kubernetes-nodes-cadvisor](https://github.com/linkerd/linkerd2/blob/main/controller/heartbeat/heartbeat.go#L173C45-L173C45) If someone's using a different job name, like cadvisor, it won't work. Should we...

whoops :P Before adding the job to the docs, I want to test the entire workflow again on a fresh Kubernetes cluster. My latest tests were with Linkerd v2.13.

Hi @kflynn. In version ```stable-2.14.5```, which I'm currently using, the ```PrometheusUrl``` appears to be hardcoded ([see values](https://github.com/linkerd/linkerd2/blob/stable-2.14.5/charts/linkerd-control-plane/templates/heartbeat.yaml#L67)). In contrast, on the main branch, it is variable and can be specified...

Tracking progress on dart-lang/http#1639

```dart WebSocketChannel channel = WebSocketChannel.connect( Uri.parse('ws://localhost:8000/ws'), ); try { await channel.ready; } catch (e) { print("Exception: $e"); } ```

@taiki-e So `dev-dependencies` should be merged with `dependencies` under `dependencies` in the bin crate? The `dependencies: BTreeMap` in the manifest is overriding the keys, so `dev-dependencies` meta will override `dependencies`...

Is it safe to call `std` functions inside `#[dtor]`? > #[dtor] > fn on_shutdown() { > let container_id = CONTAINER.get().map(|c| c.id()) > .expect("failed to get container id"); > std::process::Command::new("docker") >...