mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
1) Fix a serialization problem in command inherits AsyncCreateCommand.
2) Deal with special IDs (i.e. -1) in UUID translation
This commit is contained in:
parent
0b6abd1717
commit
9489d6ffeb
@ -446,6 +446,7 @@ public class ApiServer implements HttpRequestHandler {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (objectId != null) {
|
if (objectId != null) {
|
||||||
|
SerializationContext.current().setUuidTranslation(true);
|
||||||
return ((BaseAsyncCreateCmd) asyncCmd).getResponse(jobId, objectId, objectEntityTable);
|
return ((BaseAsyncCreateCmd) asyncCmd).getResponse(jobId, objectId, objectEntityTable);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -75,6 +75,9 @@ public class IdentityDaoImpl extends GenericDaoBase<IdentityVO, Long> implements
|
|||||||
if(rs.next()) {
|
if(rs.next()) {
|
||||||
return rs.getLong(1);
|
return rs.getLong(1);
|
||||||
} else {
|
} else {
|
||||||
|
if(id != 0)
|
||||||
|
return id;
|
||||||
|
|
||||||
throw new InvalidParameterValueException("Object " + tableName + "(uuid: " + identityString + ") does not exist.");
|
throw new InvalidParameterValueException("Object " + tableName + "(uuid: " + identityString + ") does not exist.");
|
||||||
}
|
}
|
||||||
} catch (SQLException e) {
|
} catch (SQLException e) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user