Skip to content

Commit

Permalink
Increase timeout in Postgres test to 5 mins
Browse files Browse the repository at this point in the history
  • Loading branch information
fkettelhoit committed Jun 5, 2024
1 parent 446267e commit 11420c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/postgres-integration/tests/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ fn simulate() {
eprintln!("party0> {line}");
}
});
let result = r.recv_timeout(Duration::from_secs(60));
let result = r.recv_timeout(Duration::from_secs(5 * 60));
for mut child in children {
child.kill().unwrap();
}
Expand Down

0 comments on commit 11420c1

Please sign in to comment.