Skip to content

Commit

Permalink
fix: rename list all resources host call
Browse files Browse the repository at this point in the history
Signed-off-by: Fabrizio Sestito <[email protected]>
  • Loading branch information
fabriziosestito committed Dec 19, 2023
1 parent adc01b6 commit b64d2fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/host_capabilities/kubernetes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ where
let msg = serde_json::to_vec(req)
.map_err(|e| anyhow!("error serializing the list all resources request: {}", e))?;
let response_raw =
wapc_guest::host_call("kubewarden", "kubernetes", "list_all_resources", &msg)
wapc_guest::host_call("kubewarden", "kubernetes", "list_resources_all", &msg)
.map_err(|e| anyhow!("{}", e))?;

serde_json::from_slice(&response_raw).map_err(|e| {
Expand Down

0 comments on commit b64d2fd

Please sign in to comment.