Skip to content

Commit ba4f708

Browse files
authored
fix: ffi mismatch (#39)
Align with upstream helm sdk signature.
1 parent ea60c30 commit ba4f708

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

helm_sdkpy/_ffi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
int helm_sdkpy_upgrade(helm_sdkpy_handle handle, const char *release_name, const char *chart_path, const char *values_json, const char *version, char **result_json);
4141
4242
// Uninstall action
43-
int helm_sdkpy_uninstall(helm_sdkpy_handle handle, const char *release_name, int wait, int timeout_seconds, int skip_schema_validation, char **result_json);
43+
int helm_sdkpy_uninstall(helm_sdkpy_handle handle, const char *release_name, int wait, int timeout_seconds, char **result_json);
4444
4545
// List action
4646
int helm_sdkpy_list(helm_sdkpy_handle handle, int all, char **result_json);

helm_sdkpy/actions.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,6 @@ def _uninstall():
376376
name_cstr,
377377
1 if wait else 0,
378378
timeout,
379-
0, # skip_schema_validation - not needed for uninstall
380379
result_json,
381380
)
382381

0 commit comments

Comments
 (0)