From 1d45137502184151433ce1f8d6193ad8f8c5e7de Mon Sep 17 00:00:00 2001 From: Ray Date: Fri, 27 Mar 2009 13:26:01 -0400 Subject: [PATCH] Change fastStoreHudCache = False as default Import parameter. --- pyfpdb/Configuration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/Configuration.py b/pyfpdb/Configuration.py index 1e038445..8db1f14f 100755 --- a/pyfpdb/Configuration.py +++ b/pyfpdb/Configuration.py @@ -213,7 +213,7 @@ class Import: self.callFpdbHud = node.getAttribute("callFpdbHud") self.hhArchiveBase = node.getAttribute("hhArchiveBase") self.saveActions = fix_tf(node.getAttribute("saveActions"), True) - self.fastStoreHudCache = fix_tf(node.getAttribute("fastStoreHudCache"), True) + self.fastStoreHudCache = fix_tf(node.getAttribute("fastStoreHudCache"), False) def __str__(self): return " interval = %s\n callFpdbHud = %s\n hhArchiveBase = %s\n saveActions = %s\n fastStoreHudCache = %s\n" \