mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 08:38:28 +00:00
fix: [LAUNCH] remove ardb check
This commit is contained in:
parent
6e66fc943b
commit
83ab4a93cd
1 changed files with 3 additions and 3 deletions
|
@ -459,14 +459,14 @@ function launch_queues {
|
|||
function launch_scripts {
|
||||
if [[ ! $isscripted ]]; then ############################# is core
|
||||
sleep 1
|
||||
if checking_ardb && checking_redis && checking_kvrocks; then
|
||||
if checking_redis && checking_kvrocks; then
|
||||
launching_scripts;
|
||||
else
|
||||
no_script_launched=true
|
||||
while $no_script_launched; do
|
||||
echo -e $YELLOW"\tScript not started, waiting 5 more secondes"$DEFAULT
|
||||
sleep 5
|
||||
if checking_redis && checking_ardb && checking_kvrocks; then
|
||||
if checking_redis && checking_kvrocks; then
|
||||
launching_scripts;
|
||||
no_script_launched=false
|
||||
else
|
||||
|
@ -597,7 +597,7 @@ function launch_tests() {
|
|||
|
||||
function reset_password() {
|
||||
echo -e "\t* Reseting UI admin password..."
|
||||
if checking_ardb && checking_redis; then
|
||||
if checking_kvrocks && checking_redis; then
|
||||
python ${AIL_HOME}/var/www/create_default_user.py &
|
||||
wait
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue