diff options
author | Narayan Desai <desai@mcs.anl.gov> | 2009-03-09 16:29:43 +0000 |
---|---|---|
committer | Narayan Desai <desai@mcs.anl.gov> | 2009-03-09 16:29:43 +0000 |
commit | 1158fc115d9b2a32e657d8c87967a67a98581148 (patch) | |
tree | bf66ea91c97c833ee014b9e3a78b72ed805b4b61 | |
parent | 96be3de87556d37f94d07eea726f6dd1a5b561b6 (diff) | |
download | bcfg2-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
-rw-r--r-- | src/lib/Server/FileMonitor.py | 2 |
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 |