From a96ed4d797a4a4ef713b2961092d6b66b340b456 Mon Sep 17 00:00:00 2001 From: LordMathis Date: Thu, 16 Oct 2025 20:22:12 +0200 Subject: [PATCH] Fix status json tag static check --- pkg/instance/instance.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/instance/instance.go b/pkg/instance/instance.go index 0480062..fba8b8c 100644 --- a/pkg/instance/instance.go +++ b/pkg/instance/instance.go @@ -21,7 +21,7 @@ type Instance struct { Created int64 `json:"created,omitempty"` // Unix timestamp when the instance was created // Mutable state - each owns its own lock - status *status `json:"status"` // unexported - status owns its lock + status *status `json:"-"` // unexported - status owns its lock options *CreateInstanceOptions `json:"-"` // Global configuration (read-only, no lock needed)