mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-03-03 12:14:10 -04:00
autotest: increase number of parameter retries
sets were failing just after we uploaded very large numbers of parameters. I'm guessing the parameter queue in ArduPilot is still full.
This commit is contained in:
parent
4bb91d1ec1
commit
4c173e01ef
@ -3989,7 +3989,7 @@ class AutoTest(ABC):
|
||||
if attempts is None:
|
||||
# we can easily fill ArduPilot's param-set/param-get queue
|
||||
# which is quite short. So we retry *a lot*.
|
||||
attempts = len(want) * 5
|
||||
attempts = len(want) * 10
|
||||
|
||||
param_value_messages = []
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user