Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Synchronize watched process and reporter output printing #46141

Merged
merged 2 commits into from
Jan 24, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix
  • Loading branch information
tmat committed Jan 22, 2025
commit d9d790bd170936a9c25a85dd25d53ef16e9e4239
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ async Task MakeRudeEditChange()
var hasUpdateSource = w.CreateCompletionSource();
w.Reporter.OnProcessOutput += line =>
{
if (line.Content.StartsWith($"[ServiceA ({tfm})]") && line.Content.Contains("Started A: 2"))
if (line.Content.StartsWith($"[A ({tfm})]") && line.Content.Contains("Started A: 2"))
{
hasUpdateSource.SetResult();
}
Expand Down
Loading