Skip to content

Commit beb0b39

Browse files
committed
fix(devnet): start DMQ nodes after Cardano nodes are ready
1 parent 0474af3 commit beb0b39

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

mithril-test-lab/mithril-devnet/devnet-run.sh

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,23 +31,23 @@ echo
3131
# Change directory
3232
pushd ${ARTIFACTS_DIR} > /dev/null
3333

34-
# Start devnet DMQ nodes
35-
if [[ "${NODES}" = *"dmq"* ]] || [[ "${NODES}" = "*" ]]; then
34+
# Start devnet Cardano nodes
35+
if [[ "${NODES}" = *"cardano"* ]] || [[ "${NODES}" = "*" ]]; then
3636
echo "====================================================================="
37-
echo " Start DMQ nodes"
37+
echo " Start Cardano nodes"
3838
echo "====================================================================="
3939
echo
40-
./start-dmq.sh
40+
./start-cardano.sh
4141
echo
4242
fi
4343

44-
# Start devnet Cardano nodes
45-
if [[ "${NODES}" = *"cardano"* ]] || [[ "${NODES}" = "*" ]]; then
44+
# Start devnet DMQ nodes
45+
if [[ "${NODES}" = *"dmq"* ]] || [[ "${NODES}" = "*" ]]; then
4646
echo "====================================================================="
47-
echo " Start Cardano nodes"
47+
echo " Start DMQ nodes"
4848
echo "====================================================================="
4949
echo
50-
./start-cardano.sh
50+
./start-dmq.sh
5151
echo
5252
fi
5353

0 commit comments

Comments
 (0)