Skip to content

Commit

Permalink
increase number of unprocessed payloads from 1000 to 10000 (device-ma…
Browse files Browse the repository at this point in the history
…nagement-lora)
  • Loading branch information
phcrb committed Apr 6, 2022
1 parent 5b477db commit d90e26d
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 d90e26d

Please sign in to comment.