@stomp/stompjs 6.0.0 → 6.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -44,7 +44,7 @@ you should start at https://stomp-js.github.io/api-docs/latest/classes/Client.ht
44
44
 
45
45
  if you were using an older version of this library, you would need to make changes
46
46
  to your code. Head to
47
- [Upgrading](https://stomp-js.github.io/guide/stompjs/upgrading-stompjs.html)
47
+ [Upgrading](https://stomp-js.github.io/#upgrading).
48
48
 
49
49
  ## Usage with RxJS
50
50
 
@@ -209,9 +209,9 @@ class Client {
209
209
  this.stompVersions = _versions__WEBPACK_IMPORTED_MODULE_2__["Versions"].default;
210
210
  /**
211
211
  * Will retry if Stomp connection is not established in specified milliseconds.
212
- * Default 10,000ms, set to 0 to wait for ever.
212
+ * Default 0, which implies wait for ever.
213
213
  */
214
- this.connectionTimeout = 10000;
214
+ this.connectionTimeout = 0;
215
215
  /**
216
216
  * automatically reconnect with delay in milliseconds, set to 0 to disable.
217
217
  */