From 588e5108cda4a8842d515a617ca188c1aa152fe7 Mon Sep 17 00:00:00 2001 From: Tyler Doyle Date: Tue, 21 Nov 2017 16:16:40 -0800 Subject: [PATCH] Get ready for supporting .hyper files when Hyper releases --- tableauserverclient/server/endpoint/datasources_endpoint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tableauserverclient/server/endpoint/datasources_endpoint.py b/tableauserverclient/server/endpoint/datasources_endpoint.py index 27c5981a1..882001f18 100644 --- a/tableauserverclient/server/endpoint/datasources_endpoint.py +++ b/tableauserverclient/server/endpoint/datasources_endpoint.py @@ -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')