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 75754f8 commit 05c3951Copy full SHA for 05c3951
components/supervisor/pkg/supervisor/ssh.go
@@ -100,10 +100,7 @@ func (s *sshServer) handleConn(ctx context.Context, conn net.Conn) {
100
"-oUseDNS no", // Disable DNS lookups.
101
"-oSubsystem sftp internal-sftp",
102
"-oStrictModes no", // don't care for home directory and file permissions
103
- }
104
-
105
- if os.Getenv("SUPERVISOR_DEBUG_ENABLE") != "" {
106
- args = append(args, "-oLogLevel DEBUG")
+ "-oLogLevel DEBUG", // enabled DEBUG mode by default
107
}
108
109
socketFD, err := conn.(*net.TCPConn).File()
0 commit comments