Skip to content
Snippets Groups Projects
Commit 2bcbc018 authored by Henri Chataing's avatar Henri Chataing Committed by Abel Lucas
Browse files

RootCanal: Increase connection timeout to 3sec

The current  value of 1sec is causing flakiness for avatar tests
due to rare mis-scheduled events. This changes increases the value
as a temporary measure until a proper workaround is put in place.

Bug: 282824672
Test: atest avatar
Change-Id: Idcb053f7720a66beb02a33c68c8ef5f66310cb21
parent 15b3c273
No related branches found
No related tags found
No related merge requests found
......@@ -33,7 +33,7 @@ AclConnection::AclConnection(AddressWithType address,
type_(phy_type),
role_(role),
last_packet_timestamp_(std::chrono::steady_clock::now()),
timeout_(std::chrono::seconds(1)) {}
timeout_(std::chrono::seconds(3)) {}
void AclConnection::Encrypt() { encrypted_ = true; }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment