BIND 10 master, updated. 782a56fbd225e31f6b1341857ad9a5af20df4901 [master] use larger failsafe timeouts for slower machines.
BIND 10 source code commits
bind10-changes at lists.isc.org
Thu Mar 17 22:57:29 UTC 2011
The branch, master has been updated
via 782a56fbd225e31f6b1341857ad9a5af20df4901 (commit)
from 3399d44c2d83f81b92a30bec360b3f207029bc3e (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 782a56fbd225e31f6b1341857ad9a5af20df4901
Author: JINMEI Tatuya <jinmei at isc.org>
Date: Thu Mar 17 15:56:25 2011 -0700
[master] use larger failsafe timeouts for slower machines.
discussed on jabber, going to push it directory. I think this is very minor,
so won't bother to increase the changelog size for this.
-----------------------------------------------------------------------
Summary of changes:
src/bin/msgq/tests/msgq_test.py | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/bin/msgq/tests/msgq_test.py b/src/bin/msgq/tests/msgq_test.py
index 59fcf41..f926845 100644
--- a/src/bin/msgq/tests/msgq_test.py
+++ b/src/bin/msgq/tests/msgq_test.py
@@ -117,7 +117,7 @@ class SendNonblock(unittest.TestCase):
Tests that the whole thing will not get blocked if someone does not read.
"""
- def terminate_check(self, task, timeout = 10):
+ def terminate_check(self, task, timeout=30):
"""
Runs task in separate process (task is a function) and checks
it terminates sooner than timeout.
@@ -194,7 +194,7 @@ class SendNonblock(unittest.TestCase):
length = len(data)
queue_pid = os.fork()
if queue_pid == 0:
- signal.alarm(30)
+ signal.alarm(120)
msgq.setup_poller()
msgq.register_socket(queue)
msgq.run()
More information about the bind10-changes
mailing list