We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
code is:
import { request } from 'npm:urllib@2.40.0'; Deno.test('test', async () => { const { data, res } = await request('https://1.1.1.1/'); console.log(data, res); });
When deno upgrade --version 1.33.3, it can return successfully. But in deno upgrade --version 1.33.4 and later versions, an error will throw:
deno upgrade --version 1.33.3
deno upgrade --version 1.33.4
TypeError: Cannot read properties of null (reading '_URLLIB_SOCKET_RESPONSE_COUNT')
The text was updated successfully, but these errors were encountered:
fix(node/http): use fake socket and proper url handling (#19340)
5aca8b9
Fixes #19349 --------- Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
b34d956
Successfully merging a pull request may close this issue.
code is:
When
deno upgrade --version 1.33.3
, it can return successfully. But indeno upgrade --version 1.33.4
and later versions, an error will throw:The text was updated successfully, but these errors were encountered: