We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66fe833 commit 91696a4Copy full SHA for 91696a4
commands/local_server_start.go
@@ -176,8 +176,8 @@ var localServerStartCmd = &console.Command{
176
177
// If 'SSLKEYLOGFILE' environment variable is set, uses this as a destination of TLS key log.
178
// In this context, the name 'SSLKEYLOGFILE' is common, so using 'SSL' instead of 'TLS' name.
179
- // The key log file from the console argument or YAML config is preferred than the environment variable.
180
- if path := os.Getenv("SSLKEYLOGFILE"); path != "" && config.TlsKeyLogFile == "" {
+ // This environment variable is preferred than the key log file from the console argument.
+ if path := os.Getenv("SSLKEYLOGFILE"); path != "" {
181
config.TlsKeyLogFile = path
182
}
183
0 commit comments