mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-31 18:27:00 +00:00
key_generator: up timeouts on keygen test
in both these cases, the timeout only serves to abort a stuck test, and the key_generator should respond more quickly, but seeing test failures in buildbot on some platforms suggests that the test is too susceptible to timing issues on loaded buildslaves.
This commit is contained in:
parent
ec77a5dc92
commit
c838cfef44
@ -51,7 +51,7 @@ class KeyGenService(unittest.TestCase, testutil.PollMixin):
|
||||
# first wait for key gen pool to fill up
|
||||
d = eventual.fireEventually()
|
||||
d.addCallback(p, 'waiting for pool to fill up')
|
||||
d.addCallback(lambda junk: self.poll(keypool_full, timeout=16))
|
||||
d.addCallback(lambda junk: self.poll(keypool_full, timeout=60))
|
||||
|
||||
d.addCallback(p, 'grabbing a few keys')
|
||||
# grab a few keys, check that pool size shrinks
|
||||
@ -92,7 +92,7 @@ class KeyGenService(unittest.TestCase, testutil.PollMixin):
|
||||
|
||||
d.addCallback(p, 'checking pool replenishment')
|
||||
# check that the pool will refill
|
||||
timeout = 2*kgs.key_generator.pool_size + kgs.key_generator.pool_refresh_delay
|
||||
timeout = 4*kgs.key_generator.pool_size + kgs.key_generator.pool_refresh_delay
|
||||
d.addCallback(lambda junk: self.poll(keypool_full, timeout=timeout))
|
||||
|
||||
return d
|
||||
|
Loading…
Reference in New Issue
Block a user