Merge branch 'delete-device' into 'master'

Fix test failure

See merge request entgra/carbon-device-mgt-plugins!53
revert-dabc3590
Charitha Goonetilleke 5 years ago
commit df5e833f77

@ -582,9 +582,11 @@ public class AndroidDeviceUtils {
throws DeviceManagementException {
try {
List<? extends Operation> pendingOperations = getPendingOperations(deviceIdentifier);
for (Operation operation : pendingOperations) {
operation.setStatus(Operation.Status.ERROR);
AndroidAPIUtils.getDeviceManagementService().updateOperation(deviceIdentifier, operation);
if (pendingOperations != null && !pendingOperations.isEmpty()) {
for (Operation operation : pendingOperations) {
operation.setStatus(Operation.Status.ERROR);
AndroidAPIUtils.getDeviceManagementService().updateOperation(deviceIdentifier, operation);
}
}
} catch (OperationManagementException e) {
String msg = "Error occurred while retrieving pending operations to update operation statuses of " +

Loading…
Cancel
Save