Skip to content

Commit 8701137

Browse files
authored
Merge pull request containerd#10777 from coolljt0725/fix_typo
core/runtime: Fix a typo in error message
2 parents d2565d4 + e479431 commit 8701137

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/runtime/v2/shim.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ func loadShim(ctx context.Context, bundle *Bundle, onClose func()) (_ ShimInstan
102102

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

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

0 commit comments

Comments
 (0)