console reconnect does not work #3958

this is not UI related, invoking right away
This commit is contained in:
rusefillc 2022-02-23 14:47:32 -05:00
parent 93be86260d
commit b2ba9c1a0d
1 changed files with 7 additions and 7 deletions

View File

@ -82,14 +82,14 @@ public class MainFrame {
@Override
public void onConnectionEstablished() {
SwingUtilities.invokeLater(() -> {
new ConnectionWatchdog(Timeouts.CONNECTION_RESTART_DELAY, () -> {
linkManager.execute(() -> {
log.info("ConnectionWatchdog.reconnectTimer restarting: " + Timeouts.CONNECTION_RESTART_DELAY);
linkManager.restart();
});
}).start();
new ConnectionWatchdog(Timeouts.CONNECTION_RESTART_DELAY, () -> {
linkManager.execute(() -> {
log.info("ConnectionWatchdog.reconnectTimer restarting: " + Timeouts.CONNECTION_RESTART_DELAY);
linkManager.restart();
});
}).start();
SwingUtilities.invokeLater(() -> {
tabbedPane.settingsTab.showContent();
tabbedPane.logsManager.showContent();
tabbedPane.fuelTunePane.showContent();