Added server assisted roaming capability
This commit is contained in:
@@ -37,7 +37,12 @@ DISABLE_AI = os.environ.get("DISABLE_AI", 'no').lower() in ['yes', '1', 'true']
|
||||
|
||||
PLATFORM = os.environ.get("PLATFORM", "raspberry")
|
||||
|
||||
FEED_TYPE = os.environ.get("FEED_TYPE", "input") # probably the worst naming the type of the accepting service.
|
||||
FEED_TYPE = os.environ.get("FEED_TYPE", "input") # probably the worst naming the type of the accepting service.
|
||||
|
||||
if FEED_TYPE not in ['input', 'filter']:
|
||||
raise ValueError("FEED_TYPE must be either input or filter")
|
||||
|
||||
# Skip fetching /assignment endpoint
|
||||
NO_AUTODISCOVER = os.environ.get("NO_AUTODISCOVER", 'no').lower() in ['yes', '1', 'true']
|
||||
|
||||
REASSIGN_INTERVAL = int(os.environ.get("REASSIGN_INTERVAL", 120))
|
||||
|
||||
Reference in New Issue
Block a user