comparison libervia/server/server.py @ 1365:10517a8698ca

server: removed unused legacy code.
author Goffi <goffi@goffi.org>
date Fri, 20 Nov 2020 17:53:38 +0100
parents df40708c4c76
children ce5cfe004d4e
comparison
equal deleted inserted replaced
1364:df40708c4c76 1365:10517a8698ca
67 from .restricted_bridge import RestrictedBridge 67 from .restricted_bridge import RestrictedBridge
68 68
69 log = getLogger(__name__) 69 log = getLogger(__name__)
70 70
71 71
72 # following value are set from twisted.plugins.libervia_server initialise
73 # (see the comment there)
74 DATA_DIR_DEFAULT = OPT_PARAMETERS_BOTH = OPT_PARAMETERS_CFG = None
75 DEFAULT_MASK = (inotify.IN_CREATE | inotify.IN_MODIFY | inotify.IN_MOVE_SELF 72 DEFAULT_MASK = (inotify.IN_CREATE | inotify.IN_MODIFY | inotify.IN_MOVE_SELF
76 | inotify.IN_MOVED_TO) 73 | inotify.IN_MOVED_TO)
77 74
78 75
79 class SysExit(Exception): 76 class SysExit(Exception):