Skip to content

Commit 0da58c7

Browse files
committed
chore: fix broken logic to unbreak integration tests.
Correction for 858a074 commit. Address to #1254
1 parent 8997b21 commit 0da58c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/ru/mystamps/web/feature/series/importing/event/RetryDownloadingEventListener.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public void onApplicationEvent(RetryDownloading event) {
6262
}
6363

6464
String status = request.getStatus();
65-
if (SeriesImportRequestStatus.DOWNLOADING_FAILED.equals(status)) {
65+
if (!SeriesImportRequestStatus.DOWNLOADING_FAILED.equals(status)) {
6666
LOG.warn("Request #{}: unexpected status '{}'. Abort a retry process", request, status);
6767
return;
6868
}

0 commit comments

Comments
 (0)