-
Notifications
You must be signed in to change notification settings - Fork 227
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
util.inspect on Node.js 5.x.x Causing Issues #111
Comments
@atom0s I cannot repro the issue as you described. The request options are printed as expect. Could you please share more about your code of calling the API? Thanks. |
With node v5.4.1 this error persists. It is a known error/issue on Node's issue tracker as well here: Our project makes use of this in a manner like this:
Which lands up getting into azure-storage-node's code which calls the above logging feature causing the crash. |
I see. I can repro it with step-by-step debug and get no problem when just continue to run the code in the debug mode. It looks like a nodejs debugger issue. |
I also faced similar util.inspect issue. But after upgrade to NodeJS 5.6 (latest) the debugger issue is resolved. |
I have a project that we use this module in. Upon making a request to createContainerIfNotExists, the project continues to execute as if the call happened but it does not. The module will eventually get to this line and stop:
Calling util.inspect lands up eventually getting to this following block of code within node's util.js:
The last line, Debug = runInDebugContext('Debug'); lands up never returning and the promise that called it never returns/ends. This completely causes all debugging for the app that makes use of your module to stop working.
The text was updated successfully, but these errors were encountered: