We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c056ac3 commit 33c1361Copy full SHA for 33c1361
setup.py
@@ -32,7 +32,7 @@
32
33
setup(
34
name='webthing',
35
- version='0.13.1',
+ version='0.13.2',
36
description='HTTP Web Thing implementation',
37
long_description=long_description,
38
url='https://github.com/mozilla-iot/webthing-python',
webthing/server.py
@@ -866,6 +866,9 @@ def start(self):
866
'server': '{}.local.'.format(socket.gethostname()),
867
}
868
869
+ if self.app.is_tls:
870
+ kwargs['properties']['tls'] = '1'
871
+
872
if sys.version_info.major == 3:
873
kwargs['addresses'] = [socket.inet_aton(get_ip())]
874
else:
0 commit comments