Skip to content
Merged
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,8 @@ public async Task<TResponse> RequestReplyAsync<TRequest, TResponse>(TRequest req
// This can happen if the other processes gets killed or crashes while while it's sending the response.
// This is especially important for 'dotnet test', where the user can simply kill the dotnet.exe process themselves.
// In that case, we want the MTP process to also die.
_environment.FailFast("[NamedPipeClient] Connection lost with the other side.");
// Exit code 1 indicates abnormal termination due to IPC connection loss.
_environment.Exit(ExitCodes.GenericFailure);
}

// Reset the current chunk size
Expand Down
Loading