summaryrefslogtreecommitdiffstats
path: root/src/lib/Server/FileMonitor.py
diff options
context:
space:
mode:
authorNarayan Desai <desai@mcs.anl.gov>2009-03-09 16:29:43 +0000
committerNarayan Desai <desai@mcs.anl.gov>2009-03-09 16:29:43 +0000
commit1158fc115d9b2a32e657d8c87967a67a98581148 (patch)
treebf66ea91c97c833ee014b9e3a78b72ed805b4b61 /src/lib/Server/FileMonitor.py
parent96be3de87556d37f94d07eea726f6dd1a5b561b6 (diff)
downloadbcfg2-1158fc115d9b2a32e657d8c87967a67a98581148.tar.gz
bcfg2-1158fc115d9b2a32e657d8c87967a67a98581148.tar.bz2
bcfg2-1158fc115d9b2a32e657d8c87967a67a98581148.zip
Reduce event coalesing threshold (Substantially reduces core initialization time)
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@5112 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src/lib/Server/FileMonitor.py')
-rw-r--r--src/lib/Server/FileMonitor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Server/FileMonitor.py b/src/lib/Server/FileMonitor.py
index 0840019e8..6334a1cc7 100644
--- a/src/lib/Server/FileMonitor.py
+++ b/src/lib/Server/FileMonitor.py
@@ -134,7 +134,7 @@ class GaminFam(object):
collapsed = 0
start = time()
now = time()
- while (time() - now) < 0.10:
+ while (time() - now) < 0.01:
if self.mon.event_pending():
while self.mon.event_pending():
count += 1