Filter all graph data for guests

This commit is contained in:
JonnyWong16 2016-04-26 20:18:49 -07:00
parent 545dd08535
commit c8b13ff5e1
5 changed files with 83 additions and 29 deletions

View file

@ -53,6 +53,10 @@ def initialize(options):
'tools.decode.on': True
}
if plexpy.DEV:
options_dict['environment'] = "test_suite"
options_dict['engine.autoreload.on'] = True
if enable_https:
options_dict['server.ssl_certificate'] = https_cert
options_dict['server.ssl_private_key'] = https_key
@ -60,10 +64,6 @@ def initialize(options):
else:
protocol = "http"
if plexpy.DEV:
options_dict['environment'] = "test_suite"
options_dict['engine.autoreload.on'] = True
if options['http_password']:
logger.info("Web server authentication is enabled, username is '%s'", options['http_username'])
options_dict['tools.auth.on'] = True