kvm: Fixed HA migrated storage error (#4079)

Fixes #4045
This commit is contained in:
Spaceman1984 2020-06-08 03:36:32 +02:00 committed by GitHub
parent 056e6768a2
commit fef4458830
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ public final class CheckVMActivityOnStoragePoolCommand extends Command {
this.suspectTimeSeconds = suspectTime.getMillis()/1000L;
final StringBuilder stringBuilder = new StringBuilder();
for (final Volume v : volumeList) {
stringBuilder.append(v.getUuid()).append(",");
stringBuilder.append(v.getPath()).append(",");
}
this.volumeList = stringBuilder.deleteCharAt(stringBuilder.length() - 1).toString();