From 9c773fbd6866e07513a8b53050111e83bed484b0 Mon Sep 17 00:00:00 2001 From: Alena Prokharchyk Date: Thu, 31 Oct 2013 13:51:25 -0700 Subject: [PATCH] DestroyNetwork: fixed regression bug - the call always returns false after finishing the transaction. Return true instead. --- .../cloudstack/engine/orchestration/NetworkOrchestrator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/orchestration/src/org/apache/cloudstack/engine/orchestration/NetworkOrchestrator.java b/engine/orchestration/src/org/apache/cloudstack/engine/orchestration/NetworkOrchestrator.java index 5636e0783b4..ddec9fcd7e4 100755 --- a/engine/orchestration/src/org/apache/cloudstack/engine/orchestration/NetworkOrchestrator.java +++ b/engine/orchestration/src/org/apache/cloudstack/engine/orchestration/NetworkOrchestrator.java @@ -2187,7 +2187,7 @@ public class NetworkOrchestrator extends ManagerBase implements NetworkOrchestra } } }); - return false; + return true; } catch ( CloudRuntimeException e ) { s_logger.error("Failed to delete network", e); return false;