Changed PrimaryStorageDownloadCommand/SnapshotCommand to be executed in sequence.

This commit is contained in:
alena 2010-09-23 15:16:56 -07:00
parent 1246a411d8
commit c9dc28c898
2 changed files with 2 additions and 2 deletions

View File

@ -97,7 +97,7 @@ public class SnapshotCommand extends Command {
*/
@Override
public boolean executeInSequence() {
return false;
return true;
}
}

View File

@ -57,6 +57,6 @@ public class PrimaryStorageDownloadCommand extends AbstractDownloadCommand {
@Override
public boolean executeInSequence() {
//Temporary relaxing serialization
return false;
return true;
}
}