-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #677 from telefonicaid/task/use_sendUpdate_multime…
…asures send to CB using multimeasures
- Loading branch information
Showing
10 changed files
with
585 additions
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
- Fix: allow send multiple measures to CB in a batch (POST /v2/op/update) and sorted by TimeInstant when possible, instead of using multiples single request (iotagent-json#825, iotagent-node-lib#1612) | ||
- Fix: default express limit to 1Mb instead default 100Kb and allow change it throught a conf env var 'IOTA_EXPRESS_LIMIT' (iota-json#827) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"actionType": "append", | ||
"entities": [ | ||
{ | ||
"id": "Second UL Device", | ||
"type": "AnMQTTDevice", | ||
"temperature": { | ||
"type": "celsius", | ||
"value": 23 | ||
} | ||
}, | ||
{ | ||
"id": "Second UL Device", | ||
"type": "AnMQTTDevice", | ||
"humidity": { | ||
"type": "degrees", | ||
"value": 98 | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"actionType": "append", | ||
"entities": [ | ||
{ | ||
"id": "Second UL Device", | ||
"type": "AnMQTTDevice", | ||
"temperature": { | ||
"type": "celsius", | ||
"value": 23 | ||
}, | ||
"humidity": { | ||
"type": "degrees", | ||
"value": 98 | ||
} | ||
}, | ||
{ | ||
"id": "Second UL Device", | ||
"type": "AnMQTTDevice", | ||
"temperature": { | ||
"type": "celsius", | ||
"value": 16 | ||
}, | ||
"humidity": { | ||
"type": "degrees", | ||
"value": 34 | ||
} | ||
} | ||
] | ||
} |
Oops, something went wrong.