Dennis Schridde
Dennis Schridde
> If it is loaded as javaagent - I dont see a good way to use logging frameworks? Do you? The OpenTelemetry JavaAgent somehow manages to log to SLF4J, even...
See-also: https://github.com/zulip/zulip-mobile/issues/3838
In case you need more recent transition examples: [Tusky](https://github.com/tuskyapp/Tusky/pull/2303) (Mastodon) and [Element](https://github.com/vector-im/element-android/pull/6228) (Matrix) recently started to offer UnifiedPush support. At least [Element provides it in both their Google Play and...
I downgraded to Podman Compose 1.0.6 and the system starts up reliably again: ``` ❯ podman-compose --project-name=mwe --file=mwe.yaml up podman-compose version: 1.0.6 ['podman', '--version', ''] using podman version: 5.0.2 **...
Still an issue in podman-compose version 1.2.0 with podman version 5.1.1, though it seems a little easier to get the pod into a working state by repeatedly cycling `up`, `down`,...
> Healthchecks actually don't work at all: #866 Thanks for pointing out that issue. Is this still the case in 1.1.0? If 1.1.0 would have introduced support for health checks,...
By now, I have better results cycling `down, up, down, up, ...` than `down, up, up, ...`. The latter will result in `cannot open '/run/user/1000/crun/e522c0ba12fa8e475d44a6a589934df1fdf75b564865c10062fb62dfac76cfa7/exec.fifo': No such file or directory`...
To build hip 4.3.0 I also needed to patch that: ```sh rm amdocl/CL/cl{,_icd,_gl,_gl_ext,_platform}.h sed -i 's/CL_EXT_SUFFIX/CL_API_SUFFIX/' \ amdocl/CL/cl_icd_amd.h \ amdocl/CL/cl_ext.h \ rocclr/cl_lqdflash_amd.h ``` Since AMD's OpenCL extension headers (hip 4.3.0...
> The AMD OpenCL runtime unfortunately cannot work with the upstream OpenCL headers. There's a lot of issues currently blocking us from upgrading. Due to this, we cannot be making...
This might be the root cause for https://github.com/nushell/nushell/issues/13185, where `[[a]; [null]]` or `[[a]; [""] [1]]` crash `polars into-df | polars to-parquet`. Manually specifying a schema (`polars into-df -s {a: str}`)...