Skip to content

Commit

Permalink
send headers with catalog
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbertDeFusco committed Mar 29, 2023
1 parent 5995bca commit fcfedac
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions intake_metabase/source.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ def _load(self):
'username': self.username,
'password': self.password,
'token': self.token,
'question': question
'question': question,
'extra_headers': self.extra_headers
}
)
e._plugin = [MetabaseQuestionSource]
Expand All @@ -73,7 +74,8 @@ def _load(self):
'password': self.password,
'token': self.token,
'database': db['id'],
'table': table['id']
'table': table['id'],
'extra_headers': self.extra_headers
}
)
e._plugin = [MetabaseTableSource]
Expand Down

0 comments on commit fcfedac

Please sign in to comment.