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
4 changes: 2 additions & 2 deletions scripts/repro-mtls-flake.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ $stressJobs = @()
$otel = $null
try {
Write-Host "Starting otelcol-contrib oracle..." -ForegroundColor Cyan
taskkill /F /IM otelcol-contrib.exe 2>$null | Out-Null
Get-Process otelcol-contrib -ErrorAction SilentlyContinue | Stop-Process -Force -ErrorAction SilentlyContinue
$otel = Start-Process -FilePath $otelBin -ArgumentList "--config=$otelConfig" `
-RedirectStandardOutput (Join-Path $outDir 'otelcol.out') `
-RedirectStandardError (Join-Path $outDir 'otelcol.err') `
Expand Down Expand Up @@ -124,5 +124,5 @@ try {
}
finally {
if ($stressJobs) { $stressJobs | Remove-Job -Force -ErrorAction SilentlyContinue }
taskkill /F /IM otelcol-contrib.exe 2>$null | Out-Null
Get-Process otelcol-contrib -ErrorAction SilentlyContinue | Stop-Process -Force -ErrorAction SilentlyContinue
}
Loading