Skip to content

Commit f50a922

Browse files
hach-quepull[bot]
authored andcommitted
fix: Update error message format based on feedback
Signed-off-by: June Rhodes <[email protected]>
1 parent 3a1d96b commit f50a922

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/cri/opts/spec_windows_opts.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ func parseMount(osi osinterface.OS, mount *runtime.Mount) (*runtimespec.Mount, e
7070
originalSrc := src
7171
src, err = osi.ResolveSymbolicLink(src)
7272
if err != nil {
73-
return nil, fmt.Errorf("failed to resolve symlink '%q' (resolved to '%q'): %w", originalSrc, src, err)
73+
return nil, fmt.Errorf("failed to resolve symlink %q: %w", originalSrc, err)
7474
}
7575
// hcsshim requires clean path, especially '/' -> '\'. Additionally,
7676
// for the destination, absolute paths should have the C: prefix.

0 commit comments

Comments
 (0)