Skip to content

Commit

Permalink
Extend timeout when waiting for service status (#107109)
Browse files Browse the repository at this point in the history
Co-authored-by: Eric StJohn <ericstj@microsoft.com>
  • Loading branch information
github-actions[bot] and ericstj committed Aug 29, 2024
1 parent 996ce3b commit 0550bcd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ private WindowsServiceTester(SafeServiceHandle serviceHandle, RemoteInvokeHandle
{ }
}

public static TimeSpan WaitForStatusTimeout { get; set; } = TimeSpan.FromSeconds(30);
public static TimeSpan WaitForStatusTimeout { get; set; } = TimeSpan.FromMinutes(3);

public new void WaitForStatus(ServiceControllerStatus desiredStatus) =>
WaitForStatus(desiredStatus, WaitForStatusTimeout);
Expand Down

0 comments on commit 0550bcd

Please sign in to comment.