fix: params typo

Signed-off-by: champly <champly@outlook.com>
This commit is contained in:
champly 2024-11-21 11:10:48 +08:00
parent 776fb24e06
commit 4a876e21bc

View File

@ -72,7 +72,7 @@ type PodSandboxManager interface {
RunPodSandbox(ctx context.Context, config *runtimeapi.PodSandboxConfig, runtimeHandler string) (string, error)
// StopPodSandbox stops the sandbox. If there are any running containers in the
// sandbox, they should be force terminated.
StopPodSandbox(pctx context.Context, odSandboxID string) error
StopPodSandbox(ctx context.Context, podSandboxID string) error
// RemovePodSandbox removes the sandbox. If there are running containers in the
// sandbox, they should be forcibly removed.
RemovePodSandbox(ctx context.Context, podSandboxID string) error