fix datacenter href bug

Signed-off-by: Abhishek Kumar <abhishek.mrt22@gmail.com>
This commit is contained in:
Abhishek Kumar 2026-04-30 11:38:47 +05:30
parent eaab07d99d
commit 905be92b0a
1 changed files with 1 additions and 1 deletions

View File

@ -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();