2020-06-10 Fred Gleason <fredg@paravelsystems.com>

* Fixed a bug in ripcd(8) that caused connections to ModbusTCP
	devices to fail to be properly restored by the connection watchdog.

Signed-off-by: Fred Gleason <fredg@paraelsystems.com>
This commit is contained in:
Fred Gleason
2020-06-10 16:33:10 -04:00
parent 4840b75f56
commit 6536e466e6
2 changed files with 4 additions and 0 deletions

View File

@@ -19884,3 +19884,6 @@
* Fixed a bug in RDRenderer that caused segue transitions to * Fixed a bug in RDRenderer that caused segue transitions to
be rendered without regard to the 'No Fade on Segue Out' checkbox be rendered without regard to the 'No Fade on Segue Out' checkbox
in the 'Edit Audio' dialog. in the 'Edit Audio' dialog.
2020-06-10 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in ripcd(8) that caused connections to ModbusTCP
devices to fail to be properly restored by the connection watchdog.

View File

@@ -179,6 +179,7 @@ void Modbus::connectedData()
"connection to Modbus device at %s:%u established", "connection to Modbus device at %s:%u established",
(const char *)modbus_ip_address.toString(),0xffff&modbus_ip_port); (const char *)modbus_ip_address.toString(),0xffff&modbus_ip_port);
modbus_watchdog_active=false; modbus_watchdog_active=false;
modbus_busy=false;
pollInputs(); pollInputs();
} }