KVM/libvirt Configuration error: target for lsi logic controller must be 0

After shutdown my old VM with sda disks it couldn’t start, and I have got an error:

"Fri Feb 2 13:17:56 2018 [Z0][VMM][I]: error: конфигурация не поддерживается: значение «target» для контроллера модели lsilogic должно быть равно 0"
My translate this log string:
error :Configuration is not supported: target value for lsilogic controller must be 0

I have red deployment file:

<devices>
                <emulator><![CDATA[/usr/bin/qemu-system-x86_64]]></emulator>
                <disk type='file' device='disk'>
                        <source file='/var/lib/one//datastores/0/120/disk.0'/>
                        <target dev='sdb'/>
                        <boot order='1'/>
                        <driver name='qemu' type='raw' cache='none'/>
                        <address type='drive' controller='0' bus='0' target='1' unit='0'/>
                </disk>
                <disk type='file' device='disk'>
                        <source file='/var/lib/one//datastores/0/120/disk.2'/>
                        <target dev='sdc'/>
                        <driver name='qemu' type='qcow2' cache='none'/>
                        <address type='drive' controller='0' bus='0' target='2' unit='0'/>
                </disk>
                <disk type='file' device='disk'>
                        <source file='/var/lib/one//datastores/0/120/disk.3'/>
                        <target dev='sdd'/>
                        <driver name='qemu' type='qcow2' cache='none'/>
                        <address type='drive' controller='0' bus='0' target='3' unit='0'/>
                </disk>

And changed attributes:
target to 0
unit to previous target value

<address type='drive' controller='0' bus='0' target='2' unit='0'/>
<address type='drive' controller='0' bus='0' target='0' unit='2'/>

Next I executed: virsh -d 0 create deployment.13, and VM started without errors


Versions of the related components and OS (frontend, hypervisors, VMs):
Opennebula 5.4.1
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=16.04
DISTRIB_CODENAME=xenial
DISTRIB_DESCRIPTION=“Ubuntu 16.04.2 LTS”

The same bug in opennebula 5.6
target must be 0
unit must be 1,2,3…