1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
From: Reinhard Tartler <siretart@tauware.de>
Date: Thu, 18 Sep 2025 12:21:10 -0400
Subject: Avoid dependency on conmon runner config
Forwarded: not-needed
---
libpod/oci_conmon_common.go | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/libpod/oci_conmon_common.go b/libpod/oci_conmon_common.go
index 6bf3576..21be96c 100644
--- a/libpod/oci_conmon_common.go
+++ b/libpod/oci_conmon_common.go
@@ -21,7 +21,6 @@ import (
"text/template"
"time"
- conmonConfig "github.com/containers/conmon/runner/config"
"github.com/containers/podman/v5/libpod/define"
"github.com/containers/podman/v5/libpod/logs"
"github.com/containers/podman/v5/pkg/checkpoint/crutils"
@@ -45,7 +44,7 @@ const (
// directly from the Go code, so const it here
// Important: The conmon attach socket uses an extra byte at the beginning of each
// message to specify the STREAM so we have to increase the buffer size by one
- bufferSize = conmonConfig.BufSize + 1
+ bufferSize = 8192 + 1
)
// ConmonOCIRuntime is an OCI runtime managed by Conmon.
|