diff --git a/devel/gitaly/files/patch-internal_command_command.go b/devel/gitaly/files/patch-internal_command_command.go new file mode 100644 index 000000000000..91ea4f00a910 --- /dev/null +++ b/devel/gitaly/files/patch-internal_command_command.go @@ -0,0 +1,17 @@ +--- internal/command/command.go.orig 2026-05-02 00:01:37 UTC ++++ internal/command/command.go +@@ -738,10 +738,10 @@ func (c *Command) logProcessComplete() { + + if ok { + attributes = append(attributes, +- attribute.Int64("inblock", rusage.Inblock), +- attribute.Int64("oublock", rusage.Oublock), +- attribute.Int64("minflt", rusage.Minflt), +- attribute.Int64("majflt", rusage.Majflt), ++ attribute.Int64("inblock", int64(rusage.Inblock)), ++ attribute.Int64("oublock", int64(rusage.Oublock)), ++ attribute.Int64("minflt", int64(rusage.Minflt)), ++ attribute.Int64("majflt", int64(rusage.Majflt)), + ) + } + attributes = append(attributes, attribute.Int64("maxrssanon_bytes", c.maxRssAnon.Load()))