Skip to content

Commit

Permalink
Merge pull request #66 from SoftwareAG/fix-increase-unprocessed-paylo…
Browse files Browse the repository at this point in the history
…ads-number

increase number of unprocessed payloads from 1000 to 10000
  • Loading branch information
phcrb authored Apr 6, 2022
2 parents 5b477db + d90e26d commit fdc8006
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ export class DevicesComponent implements OnInit {

getUnprocessPayloads() {
this.unprocessedPayloads = new Array<IEvent>();
this.eventService.list({ source: this.device.id, type: "LoRaPayload", pageSize: 1000 }).then(data => {
this.eventService.list({ source: this.device.id, type: "LoRaPayload", pageSize: 10000 }).then(data => {
data.data.forEach(event => {
if (!event.processed) {
this.unprocessedPayloads.push(event);
Expand Down

0 comments on commit fdc8006

Please sign in to comment.