Add use_agent_identity feature flag (#17385)

This commit is contained in:
Adrian
2026-04-11 09:52:06 -07:00
committed by GitHub
parent 51d58c56d5
commit 39cc85310f
5 changed files with 37 additions and 2 deletions

View File

@@ -275,7 +275,8 @@ async fn output_and_exit_are_retained_after_notification_receiver_closes() {
process_id.as_str(),
shell_argv(
"sleep 0.05; printf 'first\\n'; sleep 0.05; printf 'second\\n'",
"echo first&& ping -n 2 127.0.0.1 >NUL&& echo second",
// `cmd.exe` retains the space before `&&` in `echo first && ...`.
"(echo first) && ping -n 2 127.0.0.1 >NUL && (echo second)",
),
))
.await