Skip to content

Commit 20c73ce

Browse files
committed
update
1 parent 099b1ef commit 20c73ce

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/initial_setup.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,19 @@ wget -q https://downloads.metabase.com/v$MB_VERSION/metabase.jar
2424
# starting metabase jar locally
2525
java -jar metabase.jar > logs 2>&1 &
2626

27-
# waiting 60 seconds for the initialization to complete
28-
sleep 60
27+
# waiting 45 seconds for the initialization to complete
28+
sleep 45
2929

30-
# checking whether the metabase initialization has completed. If not, wait another 60 seconds
30+
# checking whether the metabase initialization has completed. If not, wait another 45 seconds
3131
success='False'
3232
grep -q "Metabase Initialization COMPLETE" logs
3333
if [[ $? -eq 0 ]]
3434
then
3535
echo 'success!'
3636
success='True'
3737
else
38-
echo "Waiting an extra 60 seconds for the initialization to complete"
39-
sleep 60
38+
echo "Waiting an extra 45 seconds for the initialization to complete"
39+
sleep 45
4040
grep -q "Metabase Initialization COMPLETE" logs
4141
if [[ $? -eq 0 ]]
4242
then

0 commit comments

Comments
 (0)