Skip to content

Commit 905be92

Browse files
committed
fix datacenter href bug
Signed-off-by: Abhishek Kumar <abhishek.mrt22@gmail.com>
1 parent eaab07d commit 905be92

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plugins/integrations/veeam-control-service/src/main/java/org/apache/cloudstack/veeam/api/converter/DataCenterJoinVOToDataCenterConverter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public class DataCenterJoinVOToDataCenterConverter {
3636
public static DataCenter toDataCenter(final DataCenterJoinVO zone) {
3737
final String id = zone.getUuid();
3838
final String basePath = VeeamControlService.ContextPath.value();
39-
final String href = basePath + DataCentersRouteHandler.BASE_ROUTE + DataCentersRouteHandler.BASE_ROUTE + "/" + id;
39+
final String href = basePath + DataCentersRouteHandler.BASE_ROUTE + "/" + id;
4040

4141
final DataCenter dc = new DataCenter();
4242

0 commit comments

Comments
 (0)