etreschenkov 2026-01-21 10:10:48 +03:00
parent 0f2e41611a
commit ff5e15418e

View file

@ -6,6 +6,7 @@ import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.StandardCopyOption;
import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.List;
import java.util.concurrent.ExecutorService;
import javax.xml.stream.XMLStreamException;
@ -280,7 +281,7 @@ public class SignalFacadeV3 {
if (status == null) {
throw clientExcp(SignalError.ERROR_017, XmlErrorFormat.MonitoringReportListError);
}
if (status.equals(Status.PROCESSING)) {
if (Arrays.asList(Status.PROCESSING, Status.ACCEPTED).contains(status)) {
throw clientExcp(SignalError.ERROR_018, XmlErrorFormat.MonitoringReportListError, packageName);
}
if (status.equals(Status.REJECTED)) {