Skip to content

Commit

Permalink
Remove confusing exception logging
Browse files Browse the repository at this point in the history
  • Loading branch information
arikfr committed Jul 30, 2015
1 parent edf8f5b commit 7e6b739
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion redash/query_runner/hive_ds.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
from pyhive import hive
enabled = True
except ImportError, e:
logger.exception(e)
logger.warning("Missing dependencies. Please install pyhive.")
logger.warning("You can use pip: pip install pyhive")
enabled = False
Expand Down
1 change: 0 additions & 1 deletion redash/query_runner/impala_ds.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
from impala.error import DatabaseError, RPCError
enabled = True
except ImportError, e:
logger.exception(e)
logger.warning("Missing dependencies. Please install impyla.")
logger.warning("You can use pip: pip install impyla")
enabled = False
Expand Down

0 comments on commit 7e6b739

Please sign in to comment.