Skip to content

Commit

Permalink
fix: rename experimental-connection-reuse to ntlm
Browse files Browse the repository at this point in the history
PAP-421 #code-review
  • Loading branch information
mongoose79 committed Nov 19, 2023
1 parent 0c15fde commit 321b719
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Commands/RunRepeater.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export class RunRepeater implements CommandModule {
});
}
})
.option('experimental-connection-reuse', {
.option('ntlm', {
boolean: true,
describe: 'Configure experimental support for TCP connections reuse'
})
Expand All @@ -138,9 +138,9 @@ export class RunRepeater implements CommandModule {
'Enable legacy mode, utilizing the RabbitMQ connection for communication.'
})
.conflicts('remove-daemon', 'daemon')
.conflicts('experimental-connection-reuse', 'proxy')
.conflicts('experimental-connection-reuse', 'proxy-external')
.conflicts('experimental-connection-reuse', 'proxy-internal')
.conflicts('ntlm', 'proxy')
.conflicts('ntlm', 'proxy-external')
.conflicts('ntlm', 'proxy-internal')
.conflicts('proxy-external', 'proxy')
.conflicts('proxy-internal', 'proxy')
.env('REPEATER')
Expand Down

0 comments on commit 321b719

Please sign in to comment.