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

Finish SLEEP fixes

parent 13ac7429
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 15 seconds for syncrepl to receive changes..."
sleep 15
echo "Waiting $SLEEP1 seconds for syncrepl to receive changes..."
sleep $SLEEP1
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 15 seconds for syncrepl to receive changes..."
sleep 15
echo "Waiting $SLEEP1 seconds for syncrepl to receive changes..."
sleep $SLEEP1
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 15 seconds for consumer to reconnect..."
sleep 15
echo "Waiting $SLEEP1 seconds for consumer to reconnect..."
sleep $SLEEP1
if test $RC != 0 ; then
echo "ldapsearch failed ($RC)!"
......
......@@ -361,8 +361,8 @@ if test $RC != 0 ; then
exit $RC
fi
echo "Waiting 25 seconds for syncrepl to receive changes..."
sleep 25
echo "Waiting $SLEEP2 seconds for syncrepl to receive changes..."
sleep $SLEEP2
echo "Using ldapsearch to read all the entries from the master..."
$LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 \
......
......@@ -322,8 +322,8 @@ olcSyncRepl: rid=002 provider=$URI1 binddn="cn=config" bindmethod=simple
credentials=$CONFIGPW searchbase="cn=config" type=refreshAndPersist
retry="3 5 300 5" timeout=3
EOF
echo "Waiting 10 seconds for syncrepl to receive changes..."
sleep 10
echo "Waiting $SLEEP1 seconds for syncrepl to receive changes..."
sleep $SLEEP1
echo "Using ldapsearch to read config from the producer..."
$LDAPSEARCH -b cn=config -D cn=config -H $URI1 -y $CONFIGPWF \
......
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