Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我只想使用流星的客户端部分,但它会不断尝试重新连接到服务器(在我的情况下将是一个静态 ngnix)。
有没有办法防止这些重新连接,以便 socketjs 不总是在后台尝试?
这是一个 hack,但您可以设置Meteor.default_connection._stream._retryTimeout一个较大的值(以防止重新连接)然后调用Meteor.default_connection._stream._lostConnection()(以中止初始连接尝试)。
Meteor.default_connection._stream._retryTimeout
Meteor.default_connection._stream._lostConnection()