v2.5.2
What's Changed
Increased update interval for yearly total to once per hour
The getKpiStationYear
has traffic limiting. We can only call 25 times / day. In the documentation the following is found:
Traffic limiting is performed based on the number of plants managed by
northbound API users. Number of northbound API calls per user per day =
Roundup (Number of plants/100) + 24Only one concurrent request is supported per minute.
If the access frequency exceeds the limit, the interface returns error code 407. Example:
- If a user manages 20 plants, the maximum number of API calls per day = Roundup (20/100) + 24 = 1 + 24 = 25.
- If a user manages 120 plants, the maximum number of API calls per day = Roundup (120/100) + 24 = 2 + 24 = 26.
For now I have set it to 1 update per hour to be on the safe side.
Full Changelog: v2.5.1...v2.5.2