Example trino config should specify no tunneling.

This commit is contained in:
Pablo Martin 2022-07-22 09:55:11 +02:00
parent 972530b05e
commit e3ff69144a
2 changed files with 5 additions and 2 deletions

View file

@ -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": [
{

View file

@ -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(