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

[Test] Disable Nagle's algorithm #4390

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion diesel_bench/benches/wtx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -259,11 +259,13 @@ async fn connection() -> Executor<wtx::Error, ExecutorBuffer, TcpStream> {
.expect("DATABASE_URL must be set in order to run tests");
let uri = UriRef::new(url.as_str());
let mut rng = Xorshift64::from(simple_seed());
let stream = TcpStream::connect(uri.host()).await.unwrap();
stream.set_nodelay(true);
let mut conn = Executor::connect(
&Config::from_uri(&uri).unwrap(),
ExecutorBuffer::with_capacity((512, 8192, 512, 32), 32, &mut rng).unwrap(),
&mut rng,
TcpStream::connect(uri.host()).await.unwrap(),
stream,
)
.await
.unwrap();
Expand Down
Loading