Merge branch 'devel' into release-2.4

This commit is contained in:
Jan Dvorak
2021-08-20 20:51:48 +02:00
2 changed files with 4 additions and 1 deletions

View File

@@ -140,6 +140,9 @@
- Allow usage of `http` package both v1 and v2 for backward compatibility
- Blaze weak dependency updated to v2.5.0
* `ddp-server@2.4.1`
- Fix a bug where `testMessageOnConnect` has always been sent
## v2.3.5, 2021-08-12
#### Highlights

View File

@@ -119,7 +119,7 @@ StreamServer = function () {
// only to send a message after connection on tests, useful for
// socket-stream-client/server-tests.js
if (process.env.TEST_METADATA) {
if (process.env.TEST_METADATA && process.env.TEST_METADATA !== "{}") {
socket.send(JSON.stringify({ testMessageOnConnect: true }));
}