make node red req stream enumerable

This commit is contained in:
Debadutta Panda 2025-02-03 16:55:07 +05:30
parent 82740fd79c
commit 65cce8bf3b

View File

@ -336,7 +336,8 @@ httpsPromise.then(function(startupHttps) {
// Attach the passThrough stream to the request
Object.defineProperty(req, "_nodeRedReqStream", {
value: passThrough
value: passThrough,
enumerable: true
});
return next();