Zanie Blue

Results 2930 comments of Zanie Blue

Here are some debug logs from the Rust hyper client: Failure with devpi index 0.054234s DEBUG hyper::client::connect::dns resolving host="localhost" 0.055296s DEBUG hyper::client::connect::http connecting to [::1]:3141 0.055535s DEBUG hyper::client::connect::http connected to...

I can easily reproduce with the following ```python import httpx import anyio import traceback TARGETS = [ "http://localhost:3141/root/pypi/%2Bf/11c/8f37bcca40db9/platformdirs-4.1.0-py3-none-any.whl", "http://localhost:3141/root/pypi/%2Bf/ae7/4fb96c20a0277/click-8.1.7-py3-none-any.whl", "http://localhost:3141/root/pypi/%2Bf/f83/76fb07dd1e86a/aiosignal-1.3.1-py3-none-any.whl", "http://localhost:3141/root/pypi/%2Bf/1f2/8b4522cdc2fb4/attrs-23.1.0-py3-none-any.whl", "http://localhost:3141/root/pypi/%2Bf/8c4/91190033a9af7/packaging-23.2-py3-none-any.whl", "http://localhost:3141/root/pypi/%2Bf/fde/5bd59ab5357e3/frozenlist-1.4.1-cp311-cp311-macosx_11_0_arm64.whl", "http://localhost:3141/root/pypi/%2Bf/c05/567e9c24a6b9f/idna-3.6-py3-none-any.whl", "http://localhost:3141/root/pypi/%2Bf/a0d/503e138a4c123/pathspec-0.12.1-py3-none-any.whl", "http://localhost:3141/root/pypi/%2Bf/d8a/1c6c0be645c74/yarl-1.9.4-cp311-cp311-macosx_11_0_arm64.whl", "http://localhost:3141/root/pypi/%2Bf/439/2f6c0eb8a5668/mypy_extensions-1.0.0-py3-none-any.whl", "http://localhost:3141/root/pypi/%2Bf/ff9/59bee35038c46/multidict-6.0.4-cp311-cp311-macosx_11_0_arm64.whl", "http://localhost:3141/root/pypi/%2Bf/8ce/f8710fb849d97/aiohttp-3.9.1-cp311-cp311-macosx_11_0_arm64.whl", "http://localhost:3141/root/pypi/%2Bf/c05/567e9c24a6b9f/idna-3.6-py3-none-any.whl",...

I've opened an issue over on waitress as I can reproduce it with a trivial waitress server: https://github.com/Pylons/waitress/issues/427

And here's a bug fix https://github.com/Pylons/waitress/pull/428

My 2-cents: I switched to Black's preview mode just for this feature. Otherwise, string processing is the vast majority of the time I spend manually formatting code. I would love...

Interesting thanks for the thorough report! Related: - #1534 This looks like an issue with our `uv-extract` crate. At the very least we should provide more information about what's gone...

Yep agree see https://github.com/astral-sh/uv/issues/1569

It looks like maybe this comes from [`flate2`](https://docs.rs/flate2/latest/flate2/enum.Status.html#variant.BufError) via [`async-compression`](https://github.com/Nullus157/async-compression/blob/bd46497b98117775d8921f9eb72ede84f179548f/src/codec/flate/decoder.rs#L54C21-L54C29) via [`rs-async-zip`](https://github.com/Majored/rs-async-zip) which I think we call at https://github.com/astral-sh/uv/blob/8d721830db8ad75b8b7ef38edc0e346696c52e3d/crates/uv-extract/src/stream.rs#L22 > For decompression this means that more input is needed to...

I would recommend reporting that buffer overflow as a bug to the proxy you're using (if you can), it seems like the proxy is failing to buffer the streamed data...

@anna-geller > Currently, if any subflow run fails, run_critical_work cannot be executed. If you run your subflows with `return_state=True` failed states will not be raised and a downstream can still...