forked from LBRYCommunity/lbry-sdk
fix components_to_skip setting
This commit is contained in:
parent
2e921437d8
commit
0bf8416d9f
1 changed files with 1 additions and 1 deletions
|
@ -220,7 +220,7 @@ class Daemon(AuthJSONRPCServer):
|
||||||
}
|
}
|
||||||
|
|
||||||
def __init__(self, analytics_manager=None, component_manager=None):
|
def __init__(self, analytics_manager=None, component_manager=None):
|
||||||
to_skip = list(conf.settings['components_to_skip'])
|
to_skip = conf.settings['components_to_skip']
|
||||||
if 'reflector' not in to_skip and not conf.settings['run_reflector_server']:
|
if 'reflector' not in to_skip and not conf.settings['run_reflector_server']:
|
||||||
to_skip.append('reflector')
|
to_skip.append('reflector')
|
||||||
looping_calls = {
|
looping_calls = {
|
||||||
|
|
Loading…
Reference in a new issue