Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion helm_sdkpy/_ffi.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
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);

// Uninstall action
int helm_sdkpy_uninstall(helm_sdkpy_handle handle, const char *release_name, int wait, int timeout_seconds, int skip_schema_validation, char **result_json);
int helm_sdkpy_uninstall(helm_sdkpy_handle handle, const char *release_name, int wait, int timeout_seconds, char **result_json);

// List action
int helm_sdkpy_list(helm_sdkpy_handle handle, int all, char **result_json);
Expand Down
1 change: 0 additions & 1 deletion helm_sdkpy/actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,6 @@ def _uninstall():
name_cstr,
1 if wait else 0,
timeout,
0, # skip_schema_validation - not needed for uninstall
result_json,
)

Expand Down