Simon

Results 74 comments of Simon

I also ran into this issue. > I "fixed" the bug by changing this line: > > https://github.com/pyinfra-dev/pyinfra/blob/21b022b8eb0c9da2846867d3d6706d78163599c4/pyinfra/connectors/util.py#L346 > > into > > ```python > command_bits.extend(["LANG=C", "sudo", "-H"]) > ```...

@Ivanmatthew Have a look at https://github.com/swc-project/website/blame/175def633571c164131a25ddb7e39b79b2927007/docs/usage-core.md#L15

> From k8s, docker, or whatever, I generate a config file that pingora reads once, at startup. the config file has the resolved DNS names (for example) > > Any...

> > Since publishing this [gist](https://gist.github.com/Object905/6cafd5e8e56dd60670149296411a407f) I've updated code to be more self-contained, removed dependency on crossbeam and made it work with kube-rs>[0.92.0](https://github.com/kube-rs/kube/releases/tag/0.92.0), because it changed store internals and old...

@shenshouer Sorry, I can't help you with that. I'm using the code from https://gist.github.com/Object905/6cafd5e8e56dd60670149296411a407f#file-register-rs inside `main()` and it works without issues.

@aalok-sathe It seems like you're missing some build dependencies. What distro are you running? `go build` works fine on my machine (Debian Bookworm).

@aalok-sathe I've created a Dockerfile to verify that it's possible to compile tailscale-systray on Ubuntu 20.04: ```Dockerfile FROM ubuntu:20.04 # Go 1.23 RUN apt update && \ apt install -y...

> As you can see, and as stated by the author of the issue, $ breaks things. I can verify the issue with `$`. `mysqld_exporter` parses `123456789$abc` as `123456789`. I'll...

I agree. Wouldn't an enum be a better choice though (wrapped in `Optional[]` to keep BC)?

I believe I'm running into a similar issue (K3s, external containerd v1.6.20, Debian 12, Kernel 6.1.0). Enabling `sandbox_croups_only` does indeed prevent the firecracker processes from continue running, but the containerd...