From 9a9146c07b3e9359420771074b1f2e65eef52e29 Mon Sep 17 00:00:00 2001 From: abhishek Date: Thu, 21 Oct 2010 11:42:22 -0700 Subject: [PATCH] whilst testing my enh, found that this call was using the wrong method name. Checking in the fix for the same. --- server/src/com/cloud/api/commands/UpdateZoneCmd.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/com/cloud/api/commands/UpdateZoneCmd.java b/server/src/com/cloud/api/commands/UpdateZoneCmd.java index 8d81f0ce19d..543eeca94ec 100644 --- a/server/src/com/cloud/api/commands/UpdateZoneCmd.java +++ b/server/src/com/cloud/api/commands/UpdateZoneCmd.java @@ -29,7 +29,7 @@ import com.cloud.api.ServerApiException; import com.cloud.api.response.ZoneResponse; import com.cloud.dc.DataCenterVO; -@Implementation(method="updateZone", manager=Manager.ConfigManager, description="Updates a Zone.") +@Implementation(method="editZone", manager=Manager.ConfigManager, description="Updates a Zone.") public class UpdateZoneCmd extends BaseCmd { public static final Logger s_logger = Logger.getLogger(UpdateZoneCmd.class.getName());