-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Minor - P4
-
Affects Version/s: None
-
Component/s: Connectivity
-
None
-
None
-
None
-
None
-
None
-
None
-
None
-
None
The problem is, _streamFactoryWrapper captures reference to itself, instead of the previous value of _streamFactoryWrapper.
It can be easily fixed by replacing
_streamFactoryWrapper = inner => wrapper(_streamFactoryWrapper(inner));
with
_streamFactoryWrapper = inner => wrapper(_streamFactoryWrapper(inner));