Skip to content

Commit

Permalink
Reverted change to GetReportingAppLink()
Browse files Browse the repository at this point in the history
  • Loading branch information
tippmar-nr committed Aug 8, 2024
1 parent 11bb3a4 commit 12a0278
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,8 @@ public string GetCrossProcessId(TimeSpan? timeoutOrZero = null)

public string GetReportingAppLink(TimeSpan? timeoutOrZero = null)
{
var match = TryGetLogLine(AgentReportingToLogLineRegex);
return match.Success ? match.Groups[1].Value : null;
}
var match = WaitForLogLine(AgentReportingToLogLineRegex, timeoutOrZero);
return match.Groups[1].Value; }

public void WaitForConnect(TimeSpan? timeoutOrZero = null)
{
Expand Down

0 comments on commit 12a0278

Please sign in to comment.