feedback
Catalin-Emil Fetoiu committed
Oct 24, 2023 at 11:40 UTC
ee49f6e622070307cb7650a28440e229b4a5aaea
2 files changed
+3
-1
CONTRIBUTING.md
+2
@@ -122,6 +122,8 @@ Availability Capabilities CapabilityDescriptions
122
Install tcpdump in your WSL distribution using the following commands.
123
Note: This will not work if WSL has Internet connectivity issues.
124
125
+Install [WPR](https://learn.microsoft.com/en-us/windows-hardware/test/wpt/windows-performance-recorder)
126
+
127
```
128
# sudo apt-get update
129
# sudo apt-get -y install tcpdump
diagnostics/collect-networking-logs.ps1
+1
-1
@@ -112,7 +112,7 @@ finally
112
wsl.exe -u root killall tcpdump
113
if ($tcpdumpProcess -ne $null)
114
{
115
- Wait-Process -InputObject $tcpdumpProcess
115
+ Wait-Process -InputObject $tcpdumpProcess -Timeout 10
116
}
117
}
118
catch {}