diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-03-09 10:21:31 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-09 10:21:31 -0500 |
commit | 5d3d4eba398ce862aa57d5de43d17e7ae1d45d3c (patch) | |
tree | 75f528a8e1593ed46383aab2e7114445e0f8d34d /ext/node/ops/http2.rs | |
parent | e1fb174f86adce421ee6bbce70e5dc1558c10868 (diff) |
fix(node): require of pkg json imports was broken (#22821)
Diffstat (limited to 'ext/node/ops/http2.rs')
-rw-r--r-- | ext/node/ops/http2.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/node/ops/http2.rs b/ext/node/ops/http2.rs index 3579ade98..b89990e0b 100644 --- a/ext/node/ops/http2.rs +++ b/ext/node/ops/http2.rs @@ -505,7 +505,6 @@ pub async fn op_http2_client_get_response_body_chunk( return Ok((Some(data.to_vec()), false)); } DataOrTrailers::Trailers(trailers) => { - println!("{trailers:?}"); if let Some(trailers_tx) = RcRef::map(&resource, |r| &r.trailers_tx) .borrow_mut() .await |