From 72d02e9e9d97ea0af4ebdfe56d1e93d261a99580 Mon Sep 17 00:00:00 2001 From: Arik Fraimovich Date: Fri, 17 Jun 2016 17:50:26 +0300 Subject: [PATCH] Fix: Hive should use the enabled variable --- redash/query_runner/hive_ds.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/redash/query_runner/hive_ds.py b/redash/query_runner/hive_ds.py index f7027c1d5..4dc131216 100644 --- a/redash/query_runner/hive_ds.py +++ b/redash/query_runner/hive_ds.py @@ -64,6 +64,10 @@ class Hive(BaseSQLQueryRunner): def type(cls): return "hive" + @classmethod + def enabled(cls): + return enabled + def __init__(self, configuration): super(Hive, self).__init__(configuration)