core/runtime: Fix a typo in error message

`boostrap.json` should be `bootstrap.json`

Signed-off-by: Lei Jitang <leijitang@outlook.com>
This commit is contained in:
Lei Jitang 2024-10-05 18:33:12 +08:00
parent e1006c0869
commit e479431e0d

View File

@ -102,7 +102,7 @@ func loadShim(ctx context.Context, bundle *Bundle, onClose func()) (_ ShimInstan
params, err := restoreBootstrapParams(bundle.Path) params, err := restoreBootstrapParams(bundle.Path)
if err != nil { 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) conn, err := makeConnection(ctx, bundle.ID, params, onCloseWithShimLog)