Skip to content

Commit a91d9fc

Browse files
authored
Merge branch 'main' into releases/8.1.1
2 parents 2d7f36b + a5640dd commit a91d9fc

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

examples/GridAPPS-D/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
git+https://github.com/GRIDAPPSD/gridappsd-python.git@develop
22
stomp.py==6.0.0
3-
PyYAML==5.3
3+
PyYAML==5.4
44
pytz==2019.3
55
# psutil==5.4.7
66
dateutils==0.6.7
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
git+https://github.com/GRIDAPPSD/gridappsd-python.git@develop
22
stomp.py==6.0.0
3-
PyYAML==5.3
3+
PyYAML==5.4
44
pytz==2019.3
55
# psutil==5.4.7
66
dateutils==0.6.7

services/core/PlatformDriverAgent/platform_driver/interfaces/bacnet.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,10 @@ def scrape_all(self):
176176
self.max_per_request = max(int(self.register_count/self.register_count_divisor), 1)
177177
_log.info("Device requires a lower max_per_request setting. Trying: "+str(self.max_per_request))
178178
continue
179+
elif e.message.endswith("rejected the request: 9") and self.use_read_multiple:
180+
_log.info("Device rejected request with 'unrecognized-service' error, attempting to access with use_read_multiple false")
181+
self.use_read_multiple = False
182+
continue
179183
else:
180184
raise
181185
except errors.Unreachable:

0 commit comments

Comments
 (0)