From c1fad5b15e3d076c3e200acb4eaacefd57de49bf Mon Sep 17 00:00:00 2001 From: Lorran Rodrigues <41809492+lorransr@users.noreply.github.com> Date: Tue, 5 Mar 2024 17:21:06 -0300 Subject: [PATCH] chore: set auth refresh parameter to false --- tap_superset/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tap_superset/auth.py b/tap_superset/auth.py index 4baf863..8e6b129 100644 --- a/tap_superset/auth.py +++ b/tap_superset/auth.py @@ -18,7 +18,7 @@ def fetch_token(base_url, username, password): json_data = { "provider": "db", - "refresh": True, + "refresh": False, "username": username, "password": password, }