File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -24,19 +24,19 @@ wget -q https://downloads.metabase.com/v$MB_VERSION/metabase.jar
24
24
# starting metabase jar locally
25
25
java -jar metabase.jar > logs 2>&1 &
26
26
27
- # waiting 60 seconds for the initialization to complete
28
- sleep 60
27
+ # waiting 45 seconds for the initialization to complete
28
+ sleep 45
29
29
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
31
31
success=' False'
32
32
grep -q " Metabase Initialization COMPLETE" logs
33
33
if [[ $? -eq 0 ]]
34
34
then
35
35
echo ' success!'
36
36
success=' True'
37
37
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
40
40
grep -q " Metabase Initialization COMPLETE" logs
41
41
if [[ $? -eq 0 ]]
42
42
then
You can’t perform that action at this time.
0 commit comments