You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by hu...@apache.org on 2023/03/30 15:59:23 UTC

[superset] 01/01: allow logs to show error levels

This is an automated email from the ASF dual-hosted git repository.

hugh pushed a commit to branch ssh-error-logs
in repository https://gitbox.apache.org/repos/asf/superset.git

commit 399a9339cd23e7b1a79d445403f9582bc9340430
Author: hughhhh <hu...@gmail.com>
AuthorDate: Thu Mar 30 11:58:44 2023 -0400

    allow logs to show error levels
---
 superset/extensions/ssh.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/superset/extensions/ssh.py b/superset/extensions/ssh.py
index 8fb235618c..3c7038e0b2 100644
--- a/superset/extensions/ssh.py
+++ b/superset/extensions/ssh.py
@@ -53,8 +53,9 @@ class SSHManager:
         params = {
             "ssh_address_or_host": (ssh_tunnel.server_address, ssh_tunnel.server_port),
             "ssh_username": ssh_tunnel.username,
-            "remote_bind_address": (url.host, url.port),  # bind_port, bind_host
+            "remote_bind_address": (url.host, url.port),
             "local_bind_address": (self.local_bind_address,),
+            "debug_level": "ERROR",
         }
 
         if ssh_tunnel.password: