From af95fb0828a835970d632bbfb81faf1602ebde76 Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Tue, 18 Nov 2014 10:13:49 +0000 Subject: [PATCH] [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. --- deluge/core/core.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/deluge/core/core.py b/deluge/core/core.py index ed5976654..60128b471 100644 --- a/deluge/core/core.py +++ b/deluge/core/core.py @@ -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 ---