Skip to content
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

Streaming client request doesn't handle early server response #846

Closed
Thomasdezeeuw opened this issue Nov 24, 2021 · 8 comments
Closed

Streaming client request doesn't handle early server response #846

Thomasdezeeuw opened this issue Nov 24, 2021 · 8 comments

Comments

@Thomasdezeeuw
Copy link
Contributor

Bug Report

Version

tonic v0.6.1
tonic-build v0.6.0

Platform

macOS 12.0.1.

Description

We have a service that accepts a streaming request and returns a single response, i.e. rpc Method(stream Request) returns Response {}. While streaming the request to the gRPC server the tonic client doesn't seem to react to an early response send by the server, only once the entire request is streamed is a response returned.

Some more context: we're using a timeout for the request which triggered before all the request data was streamed. This in turn made the gRPC server return a timeout error as an early response.

@LucioFranco
Copy link
Member

Do you have a repro for this by chance?

@LucioFranco LucioFranco added this to the 0.7 milestone Dec 7, 2021
@Thomasdezeeuw
Copy link
Contributor Author

I've attached a reproduction client and server in the zip file. Calling make run in the server directory should start the server and calling cargo run should run the client. It doesn't reproduce it consistently, I usually get ~12 second delay every 2/3 requests.

The server is simple and just returns an error, the logging shows that it's processed pretty quickly, but the client sometimes takes up to 12 second to see the response.

tonic_repo.zip

@Thomasdezeeuw
Copy link
Contributor Author

@LucioFranco have you had any time to look at the code and reproduce the bug?

@LucioFranco
Copy link
Member

@Thomasdezeeuw so I spent some time this morning running the repro. I was able to reproduce it twice without any logs but as soon as I add tracing logs to get h2=trace logs its impossible to reproduce (I even put the command in a infinite loop for 20min). If you're able to repro with those logs that would be super helpful.

@Thomasdezeeuw
Copy link
Contributor Author

@LucioFranco hitting the same problem. I did manage to get one with debug logging enabled:

ts="2021-12-13T10:19:47.491997Z" lvl="DEBUG" msg="connecting to 127.0.0.1:9000 " target="hyper::client::connect::http" module="hyper::client::connect::http" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.15/src/client/connect/http.rs:531"
ts="2021-12-13T10:19:47.492258Z" lvl="DEBUG" msg="connected to 127.0.0.1:9000 " target="hyper::client::connect::http" module="hyper::client::connect::http" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.15/src/client/connect/http.rs:534"
ts="2021-12-13T10:19:47.492300Z" lvl="DEBUG" msg="binding client connection " target="h2::client" module="h2::client" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/client.rs:1131"
ts="2021-12-13T10:19:47.492319Z" lvl="DEBUG" msg="client connection bound " target="h2::client" module="h2::client" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/client.rs:1136"
ts="2021-12-13T10:19:47.492350Z" lvl="DEBUG" msg="send frame=Settings { flags: (0x0), enable_push: 0, initial_window_size: 2097152, max_frame_size: 16384 } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:19:47.492387Z" lvl="DEBUG" msg="Connection; peer=Client" target="h2::proto::connection" module="h2::proto::connection" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/proto/connection.rs:132"
ts="2021-12-13T10:19:47.492482Z" lvl="DEBUG" msg="received frame=Settings { flags: (0x0), max_frame_size: 16384 } " target="h2::codec::framed_read" module="h2::codec::framed_read" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_read.rs:354"
ts="2021-12-13T10:19:47.492502Z" lvl="DEBUG" msg="send frame=Settings { flags: (0x1: ACK) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:19:47.492520Z" lvl="DEBUG" msg="send frame=WindowUpdate { stream_id: StreamId(0), size_increment: 5177345 } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:19:47.492545Z" lvl="DEBUG" msg="service.ready=true processing request " target="tower::buffer::worker" module="tower::buffer::worker" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/tower-0.4.11/src/buffer/worker.rs:197"
ts="2021-12-13T10:20:02.295047Z" lvl="DEBUG" msg="received frame=Settings { flags: (0x1: ACK) } " target="h2::codec::framed_read" module="h2::codec::framed_read" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_read.rs:354"
ts="2021-12-13T10:20:02.295084Z" lvl="DEBUG" msg="received settings ACK; applying Settings { flags: (0x0), enable_push: 0, initial_window_size: 2097152, max_frame_size: 16384 } " target="h2::proto::settings" module="h2::proto::settings" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/proto/settings.rs:53"
ts="2021-12-13T10:20:02.295123Z" lvl="DEBUG" msg="send frame=Headers { stream_id: StreamId(1), flags: (0x4: END_HEADERS) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.295216Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.295236Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.295251Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.295314Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.295326Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.295338Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.295350Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.295362Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.295373Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.295386Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.295398Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.295410Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.295420Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.295485Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.295501Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.295512Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.295523Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.295580Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.295591Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.295605Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.295616Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.295696Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.295709Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.295719Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.295731Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.295741Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.295752Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.295765Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.295776Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.295787Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.295797Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.295823Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.295839Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.295853Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.295921Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.295933Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.295943Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.295953Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296016Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296026Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296036Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296046Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296056Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296066Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296129Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296139Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296149Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296212Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296222Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296231Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296241Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296252Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296262Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296273Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296283Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296294Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296335Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296346Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296360Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296369Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296441Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296451Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296461Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296471Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296480Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296543Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296554Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296564Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296574Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296584Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296594Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296603Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296689Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296706Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296716Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296726Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296790Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296802Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296868Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296879Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296892Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296903Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296917Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296928Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296939Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296949Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.296960Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.297036Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.297047Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.297057Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.297067Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.297127Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.297137Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.297147Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.297157Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.297167Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.297177Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.297194Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.297249Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.297263Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.297274Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.297287Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.297300Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.297311Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.297422Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.297434Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.297446Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.297457Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.297497Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.297508Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.297534Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.297547Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.297557Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.297568Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.297582Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.297591Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.297601Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.297668Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.297678Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.297688Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.297984Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.297995Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298004Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298014Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298024Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298034Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298108Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298182Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298194Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298205Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298215Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298226Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298237Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298250Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298261Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298273Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298286Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298295Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298362Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298375Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298386Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298397Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298407Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298418Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298485Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298497Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298508Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298519Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298575Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298589Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298602Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298612Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298653Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298663Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298672Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298682Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298692Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298702Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298748Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298759Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298769Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298778Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298789Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298800Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298812Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298823Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298833Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298845Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298930Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298945Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298956Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.298967Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299025Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299035Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299045Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299055Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299065Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299075Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299173Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299184Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299194Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299203Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299223Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299288Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299300Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299311Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299320Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299331Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299382Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299393Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299404Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299414Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299469Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299480Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299491Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299503Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299514Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299525Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299607Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299618Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299629Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299640Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299654Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299665Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299680Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299693Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299704Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299714Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299798Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299809Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299819Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299829Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299842Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299853Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299863Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299874Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299886Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299898Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299973Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299985Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.299996Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300007Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300017Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300030Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300041Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300052Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300063Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300073Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300220Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300236Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300249Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300261Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300272Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300283Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300294Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300360Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300373Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300383Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300455Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300465Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300475Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300485Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300495Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300505Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300574Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300585Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300597Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300608Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300620Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300694Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300704Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300714Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300723Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300733Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300743Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300753Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300763Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300773Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300783Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300793Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300803Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300858Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300869Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300878Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300888Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300898Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300909Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300923Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300965Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300975Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300987Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.300996Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301006Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301016Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301026Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301035Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301045Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301114Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301171Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301184Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301194Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301204Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301214Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301226Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301236Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301245Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301256Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301266Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301326Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301336Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301347Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301359Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301383Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301395Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301407Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301417Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301427Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301436Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301482Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301492Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301502Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301512Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301521Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301531Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301541Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301551Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301560Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301570Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301620Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301630Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301639Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301649Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301659Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301669Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301678Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301688Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301752Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301762Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301817Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301828Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301837Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301847Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301856Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301866Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301876Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301885Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301895Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.301905Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302015Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302027Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302036Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302046Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302072Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302084Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302093Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302103Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302161Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302172Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302182Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302192Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302231Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302241Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302279Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302289Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302299Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302309Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302319Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302328Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302339Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302349Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302361Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302372Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302415Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302427Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302437Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302451Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302461Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302474Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302486Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302497Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302508Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302518Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302560Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302570Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302581Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302591Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302671Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302683Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302693Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302702Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302739Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302751Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302816Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302826Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302836Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302847Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302857Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302867Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302924Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302934Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302944Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.302954Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.303018Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.303031Z" lvl="DEBUG" msg="send frame=Data { stream_id: StreamId(1) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.303309Z" lvl="DEBUG" msg="received frame=WindowUpdate { stream_id: StreamId(0), size_increment: 171 } " target="h2::codec::framed_read" module="h2::codec::framed_read" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_read.rs:354"
ts="2021-12-13T10:20:02.303331Z" lvl="DEBUG" msg="received frame=Ping { ack: false, payload: [2, 4, 16, 16, 9, 14, 7, 7] } " target="h2::codec::framed_read" module="h2::codec::framed_read" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_read.rs:354"
ts="2021-12-13T10:20:02.303343Z" lvl="DEBUG" msg="send frame=Ping { ack: true, payload: [2, 4, 16, 16, 9, 14, 7, 7] } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.303448Z" lvl="DEBUG" msg="received frame=WindowUpdate { stream_id: StreamId(0), size_increment: 16416 } " target="h2::codec::framed_read" module="h2::codec::framed_read" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_read.rs:354"
ts="2021-12-13T10:20:02.303591Z" lvl="DEBUG" msg="received frame=Headers { stream_id: StreamId(1), flags: (0x5: END_HEADERS | END_STREAM) } " target="h2::codec::framed_read" module="h2::codec::framed_read" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_read.rs:354"
ts="2021-12-13T10:20:02.303628Z" lvl="DEBUG" msg="received frame=Reset { stream_id: StreamId(1), error_code: NO_ERROR } " target="h2::codec::framed_read" module="h2::codec::framed_read" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_read.rs:354"
ts="2021-12-13T10:20:02.303655Z" lvl="DEBUG" msg="received frame=WindowUpdate { stream_id: StreamId(0), size_increment: 16416 } " target="h2::codec::framed_read" module="h2::codec::framed_read" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_read.rs:354"
ts="2021-12-13T10:20:02.303665Z" lvl="DEBUG" msg="received frame=WindowUpdate { stream_id: StreamId(0), size_increment: 16416 } " target="h2::codec::framed_read" module="h2::codec::framed_read" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_read.rs:354"
ts="2021-12-13T10:20:02.303679Z" lvl="DEBUG" msg="received frame=WindowUpdate { stream_id: StreamId(0), size_increment: 65535 } " target="h2::codec::framed_read" module="h2::codec::framed_read" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_read.rs:354"
ts="2021-12-13T10:20:02.303724Z" lvl="DEBUG" msg="received frame=Settings { flags: (0x0), initial_window_size: 131070 } " target="h2::codec::framed_read" module="h2::codec::framed_read" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_read.rs:354"
ts="2021-12-13T10:20:02.303733Z" lvl="DEBUG" msg="send frame=Settings { flags: (0x1: ACK) } " target="h2::codec::framed_write" module="h2::codec::framed_write" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.7/src/codec/framed_write.rs:232"
ts="2021-12-13T10:20:02.303781Z" lvl="DEBUG" msg="client request body error: error writing a body to connection: send stream capacity unexpectedly closed " target="hyper::proto::h2::client" module="hyper::proto::h2::client" file="/Users/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.15/src/proto/h2/client.rs:273"
got error: 'status: DeadlineExceeded, message: "deadline", details: [], metadata: MetadataMap { headers: {"content-type": "application/grpc"} }', after 14.811718208s

@LucioFranco
Copy link
Member

@seanmonstar do you know if this is some weird hyper behavior of how it drains outgoing streams first?

@seanmonstar
Copy link
Member

I don't know what draining behavior you mean. The logs posted look fine to me.

@LucioFranco LucioFranco removed this from the 0.7 milestone Mar 21, 2022
@LucioFranco LucioFranco closed this as not planned Won't fix, can't repro, duplicate, stale Oct 26, 2022
@DDtKey
Copy link

DDtKey commented Jul 23, 2023

Idk if it’s still relevant
But it looks very similar to hyperium/hyper#2872 (there is a fix already) in hyper. May it be related and client does propagate an error after early response instead of ignoring it (NO_ERROR reset affects stream status, but shouldn’t fail whole request)?
Attached logs looks similar

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants