You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
It takes an additional servo.apply(servoConfig) to change idleTimeout and probably more values.
To Reproduce
Steps to reproduce the behavior:
neck=Runtime.start("neck", "Servo");
config=neck.getConfig();
# change should immediately affect servo config.idleTimeout=5000;
# legacy "mapping" to member vars requires "apply" to processneck.apply(config);
# if the save was done without the apply neck's idle timeout would be 3000neck.save();
Expected behavior
A clear and concise description of what you expected to happen.
config.idleTimeout=5000;
neck.save()
# neck.yml idleTimeout should equal 5000 (without the need of apply)
The text was updated successfully, but these errors were encountered:
Describe the bug
It takes an additional servo.apply(servoConfig) to change idleTimeout and probably more values.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
A clear and concise description of what you expected to happen.
The text was updated successfully, but these errors were encountered: