Re: CATs failing
Amit Kumar Gupta
curl exit code 6 means DNS failed. xip.io is flaky, so we this often in
our dev environments where our app domains tend to be HA_PROXY_IP.xip.io. The CATS expect the apps to finish uploading, staging, and running in 2 minutes, although in reality this can take longer depending on the size of the app, the number of dependencies it needs to fetch, etc. The CATS apps are designed to generally get up and running within the 2 minute period, but can't account for all possible types of network slowness. openjdk is 43M and downloading on my machine takes about 7 seconds. In your test output, we see it took 55 seconds. The last thing it was trying to do was upload the 51M droplet, then at some point the 2min time limit for everything to finish gets hit and the test fails. My guess is you're experiencing network issues. If you can't fix those, you may want to configure a more lenient push timeout in your acceptance_tests errand: https://github.com/cloudfoundry/cf-release/blob/5fa14702bca4d36d1fdc7241c63d0b3e40dcbe90/jobs/acceptance-tests/spec#L69 Note, the above value is in seconds, so for e.g. if you want 3 minutes, set it to 180. On Fri, Sep 4, 2015 at 10:52 AM, Quintessence Anx <qanx(a)starkandwayne.com> wrote: Good afternoon! |
|