-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix crash due to missing error listener on socket #10
base: master
Are you sure you want to change the base?
Conversation
Danke für den PR. Habs jetzt nur kurz überflogen, aber ehrlich gesagt noch nicht ganz kapiert. Komm voraussichtlich frühestens am Wochende dazu mir das genau anzuschauen. Hast Du schon eine Idee warum der Malformed-Response Test nun fehlschlägt? |
Vorschlag: Könntest Du einen Test bauen der den Crash den Du mit diesem PR beheben willst (wegen fehlender Error Listener) reproduziert? Das würde mir helfen das ganze zu verstehen. |
Ich habe den Test gefixed. Da fehlte der function Parameter bei einem Aufruf von writeEnd, dadurch ist der removeListener fehlgeschlagen. Einen Test für mein Problem zu bauen ist eine super Idee, ich bin mir nur noch nicht sicher, wie das funktionieren könnte. |
Was machen wir mit dem PR? |
@twendt sorry, voll verpennt. Gib mir Zeit bis zum nächsten Wochenende. |
Kein Problem ich habe vorerst auf eine namespaced Version umgestellt. |
I ran into an issue where the client crashes due to a missing error event listener on the socket. This happens when the ccu is not reachable and I keep trying to connect. The client uses a timeout and deletes all event listeners if no response is received. This results in a short period where there is no error listener defined and that is not allowed. If now a response comes in during that period then the client crashed.
Here I am now defining an empty function error listener that will always stay configured. The actual error handling is then done with a second listener. During writeEnd I then delete every listener, but not the empty error listener.