mirror of https://github.com/apache/cloudstack.git
DestroyNetwork: fixed regression bug - the call always returns false after finishing the transaction. Return true instead.
This commit is contained in:
parent
b436a82392
commit
9c773fbd68
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue