Skip to content

Commit

Permalink
refactor(cannon): code cleanup, streamline auth sourcing, test replay…
Browse files Browse the repository at this point in the history
… sink
  • Loading branch information
Meshiest committed Mar 29, 2024
1 parent c9cd01a commit 4a108f4
Show file tree
Hide file tree
Showing 7 changed files with 426 additions and 201 deletions.
2 changes: 1 addition & 1 deletion crates/snot/src/cannon/file.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ impl TransactionSink {
}

let writer = lock.as_mut().unwrap();
writer.write_all(line.as_bytes())?;
writer.write_all(line.trim().as_bytes())?;
writer.write_all(b"\n")?;
writer.flush()?;
Ok(())
Expand Down
Loading

0 comments on commit 4a108f4

Please sign in to comment.