8000 fix typo by dothebart · Pull Request #9400 · arangodb/arangodb · GitHub
[go: up one dir, main page]

Skip to content

fix typo #9400

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

Merged
merged 1 commit into from
Jul 3, 2019
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion README_maintainers.md
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ choose the `Npcap Loopback Adapter` number - 1:
--sniff true \
--cleanup false \
--sniffDevice 1\
--sniffProgramm c:/Programm Files/wireshark/tshark.exe
--sniffProgram c:/Programm Files/wireshark/tshark.exe

you can later on use wireshark to inpsect the capture files.

Expand Down
4 changes: 2 additions & 2 deletions js/client/modules/@arangodb/process-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -1590,8 +1590,8 @@ function launchFinalize(options, instanceInfo, startTim D61C e) {
if (platform.substr(0, 3) === 'win') {
prog = 'c:/Program Files/Wireshark/tshark.exe';
}
if (options.sniffProgramm !== undefined) {
prog = options.sniffProgramm;
if (options.sniffProgram !== undefined) {
prog = options.sniffProgram;
}
if (options.sniff === 'sudo') {
args.unshift(prog);
Expand Down
4 changes: 2 additions & 2 deletions js/client/modules/@arangodb/testing.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ let optionsDocumentation = [
' - `sniff`: if we should try to launch tcpdump / windump for a testrun',
' false / true / sudo',
' - `sniffDevice`: the device tcpdump / tshark should use',
' - `sniffProgramm`: specify your own programm',
' - `sniffProgram`: specify your own programm',
' - `build`: the directory containing the binaries',
' - `buildType`: Windows build type (Debug, Release), leave empty on linux',
' - `configDir`: the directory containing the config files, defaults to',
Expand Down Expand Up @@ -168,7 +168,7 @@ const optionsDefaults = {
'singles': 2,
'sniff': false,
'sniffDevice': undefined,
'sniffProgramm': undefined,
'sniffProgram': undefined,
'skipLogAnalysis': true,
'skipMemoryIntense': false,
'skipNightly': true,
Expand Down
0