bug fix: default secure value for services changed from False to True

This commit is contained in:
daniel_sagi
2018-07-04 12:33:42 +03:00
parent 43c27b611a
commit 05bea207fd

View File

@@ -26,7 +26,7 @@ class Event(object):
""" Event Types """
# TODO: make proof an abstract method.
class Service(object):
def __init__(self, name, path="", secure=False):
def __init__(self, name, path="", secure=True):
self.name = name
self.secure = secure
self.path = path