Open christroutner opened 1 month ago
This might be the same issue I reported in #2462. I'll take a closer look by replacing my node_modules
and package-lock.json
files and report back here.
However, I don't think that this is the same, as I'm building the application into a docker container with the --no-cache
flag. It should be installing the node_modules
folder from scratch. ..but the package-lock.json
file would be copied from the repository. So maybe that is the issue.
I'll report back on my findings.
I carefully deleted my node_modules
folder and package-lock.json
file before installing dependencies and I'm still getting the above error. As far as I can see it does not have anything to do with an unclean install as was claimed in #2462.
The main target that I'm testing is a libp2p node setup as a Circuit Relay server.
TURN works for regular internet connections across countries without this error, but it doesn't function properly with restrictive VPNs. This error indicates that WebRTC has failed to establish a connection with the peer.
I wouldn't mind if webRTC fails to connect, but this error causes the application to crash and exit, and there doesn't seem to be any way to wrap it with try/catch to handle the exception.
This is happening for us as well causing our Node processes to crash.
I wouldn't mind if webRTC fails to connect, but this error causes the application to crash and exit, and there doesn't seem to be any way to wrap it with try/catch to handle the exception.
@christroutner while this is not a 'solution' (more of a temporary workaround), you might consider an application level handler and consider not allowing the application to crash if that type of exception goes unhandled... Risky approach since there is no guarantee that the app is still in a good state... but... an ugly workaround nevertheless.... until this gets fixed.
I appreciate the tip @cristianmadularu.
I ended up just disabling WebRTC in my application until this issue can be resolved. It would be great to have, but it's not a core requirement.
Version:
libp2p v1.9.1
Platform:
Linux hp-elitedesk01 5.15.0-91-generic #101~20.04.1-Ubuntu SMP Thu Nov 16 14:22:28 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux
Subsystem:
WebRTC
Severity:
Description:
I had filed this previous issue about issues I was having with the @libp2p/webrtc package. That was resolved and the current package versions can be seen here and the code for initializing libp2p can be found here.
I'm now encountering what appears to be a race condition inside the webRTC libraries. The node will run for a while and then randomly will crash with the following error message:
Steps to reproduce the error:
The error does not occur right away. It will appear at some point within 30 minutes while the node is running. It forces the app to crash and the process manager will restart it. But then the crash will happen again within 30 minutes.