app/vmctl/vm_native.go: fixed a typo in error message

This commit is contained in:
Denys Holius 2023-05-11 17:34:57 +03:00 committed by Artem Navoiev
parent a55d3f6882
commit bb7a295146

View File

@ -104,7 +104,7 @@ func (p *vmNativeProcessor) do(ctx context.Context, f native.Filter, srcURL, dst
p.s.retries += attempts
p.s.Unlock()
if err != nil {
return fmt.Errorf("failed to migrate from %s to %s (retry attempts: %d): %w\nwith fileter %s", srcURL, dstURL, attempts, err, f)
return fmt.Errorf("failed to migrate from %s to %s (retry attempts: %d): %w\nwith filter %s", srcURL, dstURL, attempts, err, f)
}
return nil