mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-5028. Vmware instance fails to start when the chain_info of any volume that belongs to the VM is longer than 255 characters.
If the VM has snapshots then the chain_info of a volume can be longer than 255 characters. Increasing the column length of chain_info in VolumeVO to match the maximum length of type text(db schema type)
This commit is contained in:
parent
5cc9b1de66
commit
bc36aa026f
|
|
@ -135,7 +135,7 @@ public class VolumeVO implements Volume {
|
|||
@Enumerated(value = EnumType.STRING)
|
||||
private State state;
|
||||
|
||||
@Column(name = "chain_info")
|
||||
@Column(name = "chain_info",length=65535)
|
||||
String chainInfo;
|
||||
|
||||
@Column(name = "uuid")
|
||||
|
|
|
|||
Loading…
Reference in New Issue