Geert-Jan Zwiers
Geert-Jan Zwiers
I ran the tests on windows, but I just tried it on macOS and there appears to be no noticeable difference on there between running 1.30.0 and 1.30.1. So it...
I haven't checked this on Windows for a while, so I'm not sure (I can look into it next week but I'm out of town for a few days). I...
I am on Deno 1.28.1
This is the [link to the code on Github](https://github.com/Azure/azure-sdk-for-js/blob/21ff34e2589f255e8ffa7f7d5d65ca40434ec34d/sdk/identity/identity/src/credentials/azureCliCredential.ts#L48). I think the error is quite similar to the one I encountered in https://github.com/denoland/deno/issues/16714.
So this problem appears to happen with `child_process.execFile` and also `child_process.exec`, possibly when it is used together with `promisify` from `util`. The repro below is taken from the `aws-cdk` package...
Okay it's not due to promisify: ```js import { exec } from 'node:child_process'; const { stdout, stderr } = exec('npm view aws-cdk version'); stderr.on("data", (chunk) => { console.log(chunk); }); ```...
@js-writer This error has most likely been fixed in https://github.com/denoland/deno_std/pull/3167, it should be available once `deno` updates to the latest `std` and releases a new version. If you would like...
Seems like it resurfaced in 1.28.3 because I can't reproduce it on 1.28.2
Cannot reproduce anymore either, I will close this now.
For the people getting this issue when using `std/http/server.ts`, the issue should get fixed in the next patch release. For the people getting this issue when using `Deno.serve`, I have...