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 Aliaksandr Valialkin
parent 55f77dd353
commit 14529208d8
No known key found for this signature in database
GPG key ID: A72BEC6CD3D0DED1

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