Skip to content

Commit ea60c30

Browse files
authored
fix: helm_sdkpy_uninstall FFI call (#38)
FFI call was missing the 5th argument (skip_schema_validation).
1 parent d34a24e commit ea60c30

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

helm_sdkpy/actions.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,12 @@ def _uninstall():
372372
name_cstr = ffi.new("char[]", release_name.encode("utf-8"))
373373

374374
result = self._lib.helm_sdkpy_uninstall(
375-
self.config._handle_value, name_cstr, 1 if wait else 0, timeout, result_json
375+
self.config._handle_value,
376+
name_cstr,
377+
1 if wait else 0,
378+
timeout,
379+
0, # skip_schema_validation - not needed for uninstall
380+
result_json,
376381
)
377382

378383
if result != 0:

0 commit comments

Comments
 (0)