[Core] Remove old windows cache fix

This removes a fix for #1869 (using 0.15 lt) that is now fixed properly in 0.16 lt.
This commit is contained in:
Calum Lind 2014-11-18 10:13:49 +00:00
parent bdca70b330
commit af95fb0828
1 changed files with 0 additions and 4 deletions

View File

@ -67,10 +67,6 @@ class Core(component.Component):
}
# No SSL torrent support in code so disable the listen port.
settings["ssl_listen"] = 0
# On Windows OS set the disk I/O read/write to bypass OS cache
if deluge.common.windows_check():
settings["disk_io_write_mode"] = lt.io_buffer_mode_t.disable_os_cache
settings["disk_io_read_mode"] = lt.io_buffer_mode_t.disable_os_cache
self.session.set_settings(settings)
# --- libtorrent plugins ---