Skip to content

Commit

Permalink
FIX: OnReconnectionClientsGetTwinsPulled() increased timeout (Azure#5595
Browse files Browse the repository at this point in the history
)

The normal execution time (on a PC) was very close 30sec which was the defined timeout value - so in case of a hiccup the test timed out. Doubled the timeout value which no has more buffer for slower environments.
  • Loading branch information
vipeller authored Sep 30, 2021
1 parent a9dc1df commit e6ddd54
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class ConnectionEventTest
{
const int SafeProcessingDelayMs = 2000;

static readonly TimeSpan TotalProcessingTimeout = TimeSpan.FromSeconds(30);
static readonly TimeSpan TotalProcessingTimeout = TimeSpan.FromSeconds(60);

static readonly string iotHubName = "testHub";
static readonly string edgeModuleName = "$edgeHub";
Expand Down

0 comments on commit e6ddd54

Please sign in to comment.