This repository was archived by the owner on Feb 12, 2024. It is now read-only.
This repository was archived by the owner on Feb 12, 2024. It is now read-only.
Error during WebSocket handshake: Unexpected response code: 502 #972
Closed
Description
- Version: "0.25.2":
- Platform: OS X 10.12.6:
Type: Bug
Severity: High
Description:
After creating a new IPFS instance, error messages like
WebSocket connection to 'wss://sfo-2.bootstrap.libp2p.io/' failed: Error during WebSocket handshake: Unexpected response code: 502
are constantly logged in browser console, after around a minute the page crashes
Steps to reproduce the error:
import IPFS from 'ipfs';
window.App = {
start: function() {
var ipfs = new IPFS();
},
}
window.addEventListener('load', function() {
App.start();
});