This commit is contained in:
nora 2022-03-05 18:35:01 +01:00
parent 262fdc3dc6
commit c89a204a54
2 changed files with 1 additions and 4 deletions

View file

@ -11,9 +11,7 @@ env:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Check dashboard frontend formatting
@ -26,7 +24,7 @@ jobs:
- name: Run clippy -D clippy::all
run: cargo clippy --verbose -- -D clippy::all
- name: Check format
run: cargo fmt --verbose --all -- --check
run: cargo +nightly fmt --verbose --all -- --check
- name: Run tests
run: cargo test --verbose --all
- name: Run client integration tests

View file

@ -154,7 +154,6 @@ impl TransportConnection {
let mut header_buf = Vec::new();
frame::write_content_header(&mut header_buf, &header)?;
warn!(?header, ?header_buf, "Sending content header");
frame::write_frame(&mut self.stream, FrameType::Header, channel, &header_buf).await?;
self.send_bodies(channel, body).await