File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
services/core/PlatformDriverAgent/platform_driver/interfaces Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 11git+https://github.com/GRIDAPPSD/gridappsd-python.git@develop
22stomp.py == 6.0.0
3- PyYAML == 5.3
3+ PyYAML == 5.4
44pytz == 2019.3
55# psutil==5.4.7
66dateutils == 0.6.7
Original file line number Diff line number Diff line change 11git+https://github.com/GRIDAPPSD/gridappsd-python.git@develop
22stomp.py == 6.0.0
3- PyYAML == 5.3
3+ PyYAML == 5.4
44pytz == 2019.3
55# psutil==5.4.7
66dateutils == 0.6.7
Original file line number Diff line number Diff 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 :
You can’t perform that action at this time.
0 commit comments