fix simulator

This commit is contained in:
Edison Su 2013-08-06 13:30:52 -07:00
parent d284fd9894
commit fe9f02c372
1 changed files with 1 additions and 0 deletions

View File

@ -65,6 +65,7 @@ public class SimulatorStorageProcessor implements StorageProcessor {
public Answer cloneVolumeFromBaseTemplate(CopyCommand cmd) {
VolumeObjectTO volume = new VolumeObjectTO();
volume.setPath(UUID.randomUUID().toString());
volume.setSize(100);
volume.setFormat(Storage.ImageFormat.RAW);
return new CopyCmdAnswer(volume);
}