This commit is contained in:
parent
0f2e41611a
commit
ff5e15418e
1 changed files with 2 additions and 1 deletions
|
|
@ -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)) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue