Example trino config should specify no tunneling.
This commit is contained in:
parent
972530b05e
commit
e3ff69144a
2 changed files with 5 additions and 2 deletions
|
|
@ -7,7 +7,10 @@
|
||||||
"password": "your_password",
|
"password": "your_password",
|
||||||
"http_scheme": "https",
|
"http_scheme": "https",
|
||||||
"catalog": "app_lm_mysql",
|
"catalog": "app_lm_mysql",
|
||||||
"schema": "comprea"
|
"schema": "comprea",
|
||||||
|
"ssh_tunneling": {
|
||||||
|
"use_tunnel": false
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"queries_to_measure": [
|
"queries_to_measure": [
|
||||||
{
|
{
|
||||||
|
|
|
||||||
2
setup.py
2
setup.py
|
|
@ -1,7 +1,7 @@
|
||||||
from setuptools import setup, find_packages
|
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()
|
required = f.read().splitlines()
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue