From 11b9733f0c45fca7dc3d48a9492ed636dda15a26 Mon Sep 17 00:00:00 2001 From: will Date: Tue, 25 Jan 2011 11:36:21 -0800 Subject: [PATCH] Removed sleep call that was accidentally checked in. --- api/src/com/cloud/api/commands/AttachVolumeCmd.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/api/src/com/cloud/api/commands/AttachVolumeCmd.java b/api/src/com/cloud/api/commands/AttachVolumeCmd.java index c8f4b0630a3..c320d7d9b04 100755 --- a/api/src/com/cloud/api/commands/AttachVolumeCmd.java +++ b/api/src/com/cloud/api/commands/AttachVolumeCmd.java @@ -116,11 +116,6 @@ public class AttachVolumeCmd extends BaseAsyncCmd { @Override public void execute(){ - try { - Thread.sleep(2000); - } catch (Exception e) { - - } Volume result = _userVmService.attachVolumeToVM(this); if (result != null) { VolumeResponse response = _responseGenerator.createVolumeResponse(result);