launchpad-reviewers team mailing list archive
-
launchpad-reviewers team
-
Mailing list archive
-
Message #23904
[Merge] lp:~cjwatson/launchpad/rabbitfixture-0.4.2 into lp:launchpad
Colin Watson has proposed merging lp:~cjwatson/launchpad/rabbitfixture-0.4.2 into lp:launchpad.
Commit message:
Upgrade to rabbitfixture 0.4.2 and bump ctltimeout to 60 seconds.
Requested reviews:
Launchpad code reviewers (launchpad-reviewers)
For more details, see:
https://code.launchpad.net/~cjwatson/launchpad/rabbitfixture-0.4.2/+merge/371738
This should help with some transient buildbot failures.
--
Your team Launchpad code reviewers is requested to review the proposed merge of lp:~cjwatson/launchpad/rabbitfixture-0.4.2 into lp:launchpad.
=== modified file 'constraints.txt'
--- constraints.txt 2019-08-22 14:23:29 +0000
+++ constraints.txt 2019-08-23 11:46:50 +0000
@@ -345,7 +345,7 @@
python-openid==2.2.5-fix1034376
python-swiftclient==2.0.3
PyYAML==3.10
-rabbitfixture==0.4.1
+rabbitfixture==0.4.2
requests==2.22.0
requests-file==1.4.3
requests-toolbelt==0.9.1
=== modified file 'lib/lp/testing/layers.py'
--- lib/lp/testing/layers.py 2019-05-22 14:57:45 +0000
+++ lib/lp/testing/layers.py 2019-08-23 11:46:50 +0000
@@ -676,7 +676,9 @@
class RabbitMQLayer(BaseLayer):
"""Provides tests access to a rabbitMQ instance."""
- rabbit = RabbitServer()
+ # The default timeout is 15 seconds, but increase this a bit to allow
+ # some more leeway for slow test environments.
+ rabbit = RabbitServer(ctltimeout=60)
_is_setup = False
Follow ups