added ssl/verify_ssl for influx as options

This commit is contained in:
Nicholas St. Germain 2019-01-11 23:27:06 -06:00
parent 989e7f0e44
commit 3d0f4b275f
4 changed files with 12 additions and 5 deletions

View file

@ -14,8 +14,10 @@ if version_info < (3, 6, 2):
class InfluxServer(NamedTuple):
password: str = 'root'
port: int = 8086
ssl: bool = False
url: str = 'localhost'
username: str = 'root'
verify_ssl: bool = False
class SonarrServer(NamedTuple):