8000 Get ready for supporting .hyper files when Hyper releases by t8y8 · Pull Request #246 · tableau/server-client-python · GitHub
[go: up one dir, main page]

Skip to content

Get ready for supporting .hyper files when Hyper releases #246

8000 New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 29, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# The maximum size of a file that can be published in a single request is 64MB
FILESIZE_LIMIT = 1024 * 1024 * 64 # 64MB

ALLOWED_FILE_EXTENSIONS = ['tds', 'tdsx', 'tde']
ALLOWED_FILE_EXTENSIONS = ['tds', 'tdsx', 'tde', 'hyper']

logger = logging.getLogger('tableau.endpoint.datasources')

Expand Down
0