From 1c3761bb53c95d75751f95e8f77d9d1e5928b968 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Tue, 25 Aug 2026 14:48:27 +0900 Subject: container: enter init path early There is generally no use case where any setup is required before init, and requiring the explicit function call is error-prone and unnecessary. It also causes trouble with packages using a similar trick. This change moves argv0 check early and makes it an import side effect. The stub will be removed in v0.5. Signed-off-by: Ophestra --- container/initoverlay.go | 3 --- 1 file changed, 3 deletions(-) (limited to 'container/initoverlay.go') diff --git a/container/initoverlay.go b/container/initoverlay.go index e4cb0f5a..96308921 100644 --- a/container/initoverlay.go +++ b/container/initoverlay.go @@ -1,7 +1,6 @@ package container import ( - "encoding/gob" "fmt" "slices" @@ -19,8 +18,6 @@ const ( intermediatePatternOverlayWork = "overlay.work.*" ) -func init() { gob.Register(new(MountOverlayOp)) } - const ( // OverlayEphemeralUnexpectedUpper is set when [MountOverlayOp.Work] is nil // and [MountOverlayOp.Upper] holds an unexpected value. -- cgit v1.3.1