mirror of https://github.com/jeecgboot/jeecg-boot
Merge pull request #61 from LQYBill/feature/addPurchaseMabang
fix : mabang sku job errorpull/6221/head
commit
4f49712e74
|
@ -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