From e3ff69144aa7243a20320b2b17299bf1eaeebcfc Mon Sep 17 00:00:00 2001 From: Pablo Martin Date: Fri, 22 Jul 2022 09:55:11 +0200 Subject: [PATCH] Example trino config should specify no tunneling. --- config_examples/trino_config.json | 5 ++++- setup.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) 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(