ban4e

Results 1 comments of ban4e

I faced the same problem. In addition to the `end` event, you can subscribe to the `status` event: ``` stream.on('status', function(status) { console.log(status.code); console.log(status.details); console.log(status.metadata); }); ``` In my case,...