Mateusz Gozdek

Results 420 comments of Mateusz Gozdek

Hmm, I was using `kexec` on Ubuntu for few years for kernel upgrades on bunch of bare-metal servers and I've never encountered any issues related to it.

Some Flatcar and kexec references spotted in the wild: https://twitter.com/joonas_fi/status/1523751306489307136

Sounds reasonable, thanks for reporting. I wonder what @flatcar/flatcar-maintainers think or how is this handled for other forked projects.

>Just confirmed it works on alpine, you are not loading the correct processor build. Consider using 386. Using 386 build seems like an workaround, as it's statically linked, which is...

Sure. Just be aware that `t.TempDir()` use `t.Cleanup()` for triggering, which might execute at different time than currently used `defer`. It also always checks for errors, so you may find...

I guess this is because `ioutil.TempDir` got deprecated and is now replaced by `os.MkdirTemp`: ``` $ git describe --always v0.39.1-270-g6dd4e907a $ git grep os.MkdirTemp cmd/promtool/tsdb.go: dir, err := os.MkdirTemp("", "tsdb_bench")...