Merge pull request 'Fix test faliure by removing location null exception' (#307) from Gimhan-minion/device-mgt-core:location-fix into master

Reviewed-on: #307
pull/310/head
Pahansith Gunathilake 9 months ago
commit 59288ca2a0

@ -442,8 +442,8 @@ public class DeviceInformationManagerImpl implements DeviceInformationManager {
if (deviceLocation != null) {
deviceDetailsDAO.deleteDeviceLocation(device.getId(), device.getEnrolmentInfo().getId());
} else {
log.error("Device location not found for device: " + device.getId());
throw new DeviceDetailsMgtException("Device location not found for device: " + device.getId());
log.warn("Unable to find location for device with ID " + device.getId() + ". Location deletion request cannot be processed.");
return;
}
DeviceManagementDAOFactory.commitTransaction();
} catch (TransactionManagementException e) {

Loading…
Cancel
Save