mirror of https://github.com/jeecgboot/jeecg-boot
fix : mabang sku job error
parent
faa3636c3d
commit
6f45be2f59
|
@ -72,7 +72,7 @@ public class SkuListRawStream implements NetworkDataStream<SkuListResponse> {
|
||||||
if (!hasNext())
|
if (!hasNext())
|
||||||
throw new NoSuchElementException();
|
throw new NoSuchElementException();
|
||||||
|
|
||||||
log.info("Sending request for page {}/{}.", toSend.getPage(), toSend.getTotalPages());
|
log.info("Sending request for page {}/{}.", toSend.getPage(), toSend.getTotal() == null ? "?" : toSend.getTotalPages());
|
||||||
this.currentResponse = new SkuListRequest(toSend).send();
|
this.currentResponse = new SkuListRequest(toSend).send();
|
||||||
toSend.nextPage();
|
toSend.nextPage();
|
||||||
return this.currentResponse;
|
return this.currentResponse;
|
||||||
|
|
Loading…
Reference in New Issue