-
Notifications
You must be signed in to change notification settings - Fork 29.6k
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
Axios causes node.exe to crash without possibility to catch the exception #36325
Comments
"crash" here could mean several things. We need a bit more information. Is an error stack trace generated? Is it a seg fault? |
@jasnell , in my example code node.exe just unexpectedly stops working. Without any messages. Without anything that I'm able to detect. I have checked Windows logs, but there is also nothing.
Sorry, I don't know what it is. Can you suggest some additional tools/configurations to check it? |
Immediately after it crashes, enter |
For details... a "segmentation fault" is a memory error, they occur at the native (c/c++) level of Node.js where there is a bug in Node.js itself. On Linux, when a segfault happens, the operating system is pretty good at telling us about it but on windows it mostly manifests as a "silent crash" --- that is, the Node.js process just exits without any apparent reason. |
@jasnell , thanks for explanations! |
@jasnell , just got the crash: %errorlevel% = 0 |
An error code of 0 means Node.js thinks the execution was successful, and that's also the default code when you call Also, please add a catcher to the test call just in case: |
I believe I have the same issue. This never happened until axios was updated (from v0.19.2). |
@aduh95, thanks for suggestions, I did as you recommended, but result is still the same: silent termination of node.exe, with %errorlevel% = 0. |
@pavelseverov do you see anything printed to stderr? |
@aduh95 when the "silent crashing" occurs neither is printed to STDERR nor to STDOUT |
This comment has been minimized.
This comment has been minimized.
This issue is still happening with 14.16, no error can be found, except:
|
I have the same issue after axios.get around 500 to 700 urls. I am using Mac, node 14.12, axios 0.21.1.
but nothing printed |
Seem to be hitting this issue as well. Exit code 0, only triggered in an arm64 container on AWS, non-deterministic. |
I have same issue with @bloodchen. I wrote exactly same catch code but nothing happend. I'm working on Intel mac and Node.js 14.18.2, axios 0.24.0 |
I want to add, in my case it's not related to basic auth. I just did several hundreds normal http get requests and it crashed at around 400-700 calls. |
Maximum recursion?
…------- Original Message -------
On Friday, January 21st, 2022 at 1:33 AM, bloodchen ***@***.***> wrote:
I want to add, in my case it's not related to basic auth. I just did several hundreds normal http get requests and it crashed at around 400-700 calls.
—
Reply to this email directly, [view it on GitHub](#36325 (comment)), or [unsubscribe](https://github.com/notifications/unsubscribe-auth/ASZXOGRD3ZRLLTM2CNFKHX3UXCSU7ANCNFSM4UHUIQJQ).
Triage notifications on the go with GitHub Mobile for [iOS](https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675) or [Android](https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub).
You are receiving this because you commented.Message ID: ***@***.***>
|
This issue has been stale for long time and it references old versions of both Node.js and axios. With this in mind I'm going to close this issue. Feel free to reopen it or open a new one if you experience the same issue agaion. |
What steps will reproduce the bug?
Axios v.0.21.0 Basic Auth GET-queries causes node.exe to silently crash, without possibility to catch the exception.
Occurs with node.js v.14.15.1 (current LTS Version), and earlier versions. Later versions (e.g. v.15.1.0) works Ok
How often does it reproduce? Is there a required condition?
Effect is not stable. Occurs on continuous testing. With more or less normal internet connection node.exe crashes within getting of about one or two gigabytes of data (in summary, by portions, not at once). Choosing bad internet connection will bring the same result faster.
I have reproduced this issue at two different independent REST APIs with Basic Auth. Unfortunately I can't share them, because they are private resources. But I can check some other REST API, if someone can share with me Basic Auth-protected one, available for tests.
I have also tried dozens of APIs from https://github.com/public-apis/public-apis. [Un]fortunately they all work fine, I'm not able to reproduce the issue on them. Probably because there are no Basic Auth-protected APIs.
What is the expected behavior?
Running the above code leads to crash of node.exe without possibility to catch the exception.
UPDATE: with %errorlevel%=0
What do you see instead?
N/A
Additional information
Issue has been also reported to Axios developers: axios/axios#3396
(no solution so far)
The text was updated successfully, but these errors were encountered: