Skip to content

Commit 4d448da

Browse files
committed
빌드 오류 수정
1 parent 4ee8ba0 commit 4d448da

File tree

4 files changed

+3
-2
lines changed

4 files changed

+3
-2
lines changed

api/src/main/java/org/apache/cloudstack/api/ApiConstants.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1373,6 +1373,7 @@ public class ApiConstants {
13731373
public static final String CURRENT_VM_ID = "currentvmid";
13741374

13751375
public static final String RESULT_REDFISH_DATA = "redfishdata";
1376+
public static final String EXTERNAL_ENTITY = "externalEntity";
13761377

13771378
/**
13781379
* This enum specifies IO Drivers, each option controls specific policies on I/O.

api/src/main/java/org/apache/cloudstack/api/response/LoginCmdResponse.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,7 @@ public String getManagementServerId() {
238238

239239
public void setManagementServerId(String managementServerId) {
240240
this.managementServerId = managementServerId;
241+
}
241242

242243
public String getExternalEntity() {
243244
return externalEntity;

server/src/main/java/com/cloud/api/ApiServlet.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ void processRequestInContext(final HttpServletRequest req, final HttpServletResp
369369
} catch (final Exception ex) {
370370
LOGGER.error("unknown exception writing api response", ex);
371371
auditTrailSb.append(" unknown exception writing api response");
372-
} finally { N
372+
} finally {
373373
ACCESSLOGGER.trace(auditTrailSb.toString());
374374
if (LOGGER.isDebugEnabled()) {
375375
LOGGER.debug("===END=== " + reqStr);

utils/src/main/java/org/apache/cloudstack/utils/redfish/RedfishClient.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@
5656

5757
import com.cloud.utils.exception.CloudRuntimeException;
5858
import com.cloud.utils.nio.TrustAllManager;
59-
import com.google.gson.JsonElement;
6059
import org.apache.commons.httpclient.HttpStatus;
6160
import org.apache.commons.lang3.StringUtils;
6261
import org.apache.http.HttpResponse;

0 commit comments

Comments
 (0)