Skip to content

Commit

Permalink
Merge pull request containerd#10777 from coolljt0725/fix_typo
Browse files Browse the repository at this point in the history
core/runtime: Fix a typo in error message
  • Loading branch information
estesp authored Oct 7, 2024
2 parents d2565d4 + e479431 commit 8701137
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/runtime/v2/shim.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ func loadShim(ctx context.Context, bundle *Bundle, onClose func()) (_ ShimInstan

params, err := restoreBootstrapParams(bundle.Path)
if err != nil {
return nil, fmt.Errorf("failed to read boostrap.json when restoring bundle %q: %w", bundle.ID, err)
return nil, fmt.Errorf("failed to read bootstrap.json when restoring bundle %q: %w", bundle.ID, err)
}

conn, err := makeConnection(ctx, bundle.ID, params, onCloseWithShimLog)
Expand Down

0 comments on commit 8701137

Please sign in to comment.