Kill objectstore CI if we can't create a file
This is more of a hack. But one of the nodes won't properly run this. No sense in waiting 60 minutes Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
parent
ae720b3881
commit
3afc41a49b
|
@ -44,6 +44,7 @@ if [ "$OBJECT_STORE" == "swift" ]; then
|
||||||
|
|
||||||
echo "creating test file"
|
echo "creating test file"
|
||||||
|
|
||||||
|
i=0
|
||||||
while [ 1 ]
|
while [ 1 ]
|
||||||
do
|
do
|
||||||
sleep 2
|
sleep 2
|
||||||
|
@ -54,6 +55,12 @@ if [ "$OBJECT_STORE" == "swift" ]; then
|
||||||
then
|
then
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
i=$((i + 1))
|
||||||
|
if [ "$i" == "20" ]
|
||||||
|
then
|
||||||
|
exit -1
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
echo "deleting test file"
|
echo "deleting test file"
|
||||||
|
|
Loading…
Reference in New Issue