Bug 465497, Wait for AUS to notice new snippets before testing them, r=bhearsum

git-svn-id: svn://10.0.0.236/trunk@255104 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
nrthomas%gmail.com 2008-11-18 22:09:36 +00:00
parent 63465a80f8
commit 725e5ee1a2
2 changed files with 9 additions and 0 deletions

View File

@ -1230,6 +1230,12 @@ class ReleaseUpdatesFactory(ReleaseFactory):
description=['pushsnip'],
haltOnFailure=True
)
# Wait for timeout on AUS's NFS caching to expire before
# attempting to test newly-pushed snippets
self.addStep(ShellCommand,
command=['sleep','360'],
description=['wait for live snippets']
)

View File

@ -360,6 +360,9 @@ sub Push {
'/home/cltbld/bin/pushsnip', $pushDir . '-test'],
logFile => $pushLog,
);
# Wait for timeout on AUS's NFS caching to expire before
# attempting to test newly-pushed snippets
sleep(360);
}
sub Announce {