Skip to content
Snippets Groups Projects
Commit 8ef0dca3 authored by Quanah Gibson-Mount's avatar Quanah Gibson-Mount
Browse files

Fix creeping sleeps

parent 30660e65
No related branches found
No related tags found
No related merge requests found
......@@ -212,8 +212,8 @@ if test $RC != 0 ; then
exit $RC
fi
echo "Waiting $SLEEP1 seconds for syncrepl to receive changes..."
sleep $SLEEP1
echo "Waiting 15 seconds for syncrepl to receive changes..."
sleep 15
echo "Performing modrdn alone on the producer..."
$LDAPMODIFY -v -D "$MANAGERDN" -h $LOCALHOST -p $PORT1 -w $PASSWD > \
......@@ -232,8 +232,8 @@ if test $RC != 0 ; then
exit $RC
fi
echo "Waiting $SLEEP1 seconds for syncrepl to receive changes..."
sleep $SLEEP1
echo "Waiting 15 seconds for syncrepl to receive changes..."
sleep 15
echo "Performing modify alone on the producer..."
$LDAPMODIFY -v -D "$MANAGERDN" -h $LOCALHOST -p $PORT1 -w $PASSWD > \
......
......@@ -148,8 +148,8 @@ for i in 0 1 2 3 4 5; do
sleep 5
done
echo "Waiting $SLEEP1 seconds for consumer to reconnect..."
sleep $SLEEP1
echo "Waiting 15 seconds for consumer to reconnect..."
sleep 15
if test $RC != 0 ; then
echo "ldapsearch failed ($RC)!"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment