mirror of https://github.com/apache/cloudstack.git
fix datacenter href bug
Signed-off-by: Abhishek Kumar <abhishek.mrt22@gmail.com>
This commit is contained in:
parent
eaab07d99d
commit
905be92b0a
|
|
@ -36,7 +36,7 @@ public class DataCenterJoinVOToDataCenterConverter {
|
|||
public static DataCenter toDataCenter(final DataCenterJoinVO zone) {
|
||||
final String id = zone.getUuid();
|
||||
final String basePath = VeeamControlService.ContextPath.value();
|
||||
final String href = basePath + DataCentersRouteHandler.BASE_ROUTE + DataCentersRouteHandler.BASE_ROUTE + "/" + id;
|
||||
final String href = basePath + DataCentersRouteHandler.BASE_ROUTE + "/" + id;
|
||||
|
||||
final DataCenter dc = new DataCenter();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue