From f40cfebd97e252fa2979e4345368d659c0589696 Mon Sep 17 00:00:00 2001 From: Sheng Yang Date: Tue, 27 Sep 2011 15:10:25 -0700 Subject: [PATCH] Fix wrong event type for DestroyRouterCmd --- api/src/com/cloud/api/commands/DestroyRouterCmd.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/com/cloud/api/commands/DestroyRouterCmd.java b/api/src/com/cloud/api/commands/DestroyRouterCmd.java index a99e1bc7d0e..a1a735e0ecc 100644 --- a/api/src/com/cloud/api/commands/DestroyRouterCmd.java +++ b/api/src/com/cloud/api/commands/DestroyRouterCmd.java @@ -76,7 +76,7 @@ public class DestroyRouterCmd extends BaseAsyncCmd { @Override public String getEventType() { - return EventTypes.EVENT_ROUTER_STOP; + return EventTypes.EVENT_ROUTER_DESTROY; } @Override