Skip to content

Commit

Permalink
Fix a bug in the shim layer (#237)
Browse files Browse the repository at this point in the history
Signed-off-by: Xudong Sun <[email protected]>
  • Loading branch information
marshtompsxd authored Sep 6, 2023
1 parent 5e72a49 commit 10d74fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shim_layer/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ where
println!("Create failed with error: {}", err);
},
std::result::Result::Ok(obj) => {
kube_resp = KubeAPIResponse::GetResponse(KubeGetResponse{
kube_resp = KubeAPIResponse::CreateResponse(KubeCreateResponse{
res: std::result::Result::Ok(DynamicObject::from_kube(obj)),
});
println!("Create done");
Expand Down

0 comments on commit 10d74fa

Please sign in to comment.