rusEfi_Console exits (crashes?) after ~2mins of disconnected inactivity #3324
This commit is contained in:
parent
f39315be16
commit
b3de7fad13
|
@ -66,7 +66,7 @@ public class BinaryProtocolServer {
|
|||
try {
|
||||
start(linkManager, DEFAULT_PROXY_PORT, Listener.empty(), new Context());
|
||||
} catch (IOException e) {
|
||||
log.error("Error starting local proxy", e);
|
||||
log.warn("Error starting local proxy: " + e);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -85,6 +85,10 @@ public class MainFrame {
|
|||
tabbedPane.settingsTab.showContent();
|
||||
tabbedPane.logsManager.showContent();
|
||||
tabbedPane.fuelTunePane.showContent();
|
||||
/**
|
||||
* todo: we are definitely not handling reconnect properly, no code to shut down old instance of server
|
||||
* before launching new instance
|
||||
*/
|
||||
new BinaryProtocolServer().start(linkManager);
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue