[Core] Disable apply_settings for enc policy until fix can be found

This commit is contained in:
Calum Lind 2016-11-06 00:14:07 +00:00
parent 2bdbcf9a39
commit bbe9de9463
1 changed files with 2 additions and 0 deletions

View File

@ -288,6 +288,8 @@ class PreferencesManager(component.Component):
# Convert Deluge enc_level values to libtorrent enc_level values.
pe_enc_level = {0: lt.enc_level.plaintext, 1: lt.enc_level.rc4, 2: lt.enc_level.both}
try:
# XXX: Failing possibly calling apply_settings too often...
raise AttributeError
self.session.apply_settings({'out_enc_policy': lt.enc_policy(self.config['enc_out_policy']),
'in_enc_policy': lt.enc_policy(self.config['enc_in_policy']),
'allowed_enc_level': lt.enc_level(pe_enc_level[self.config['enc_level']]),