diff --git a/config_examples/trino_config.json b/config_examples/trino_config.json index 8cd8806..eaac0c0 100644 --- a/config_examples/trino_config.json +++ b/config_examples/trino_config.json @@ -7,7 +7,10 @@ "password": "your_password", "http_scheme": "https", "catalog": "app_lm_mysql", - "schema": "comprea" + "schema": "comprea", + "ssh_tunneling": { + "use_tunnel": false + } }, "queries_to_measure": [ { diff --git a/setup.py b/setup.py index 2e9f8c3..973a611 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages -with open('requirements.txt') as f: +with open('requirements.txt', encoding="utf-16") as f: required = f.read().splitlines() setup(