From 8b35254748933b3c85f5eeea1700c48f9564b13b Mon Sep 17 00:00:00 2001 From: jamesbeedy Date: Sun, 15 Feb 2026 21:07:41 +0000 Subject: [PATCH] fix: helm_sdkpy_uninstall FFI call FFI call was missing the 5th argument (skip_schema_validation). --- helm_sdkpy/actions.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/helm_sdkpy/actions.py b/helm_sdkpy/actions.py index c72b011..b48675b 100644 --- a/helm_sdkpy/actions.py +++ b/helm_sdkpy/actions.py @@ -372,7 +372,12 @@ def _uninstall(): name_cstr = ffi.new("char[]", release_name.encode("utf-8")) result = self._lib.helm_sdkpy_uninstall( - self.config._handle_value, name_cstr, 1 if wait else 0, timeout, result_json + self.config._handle_value, + name_cstr, + 1 if wait else 0, + timeout, + 0, # skip_schema_validation - not needed for uninstall + result_json, ) if result != 0: