File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ services:
22
22
- prometheus-metrics
23
23
# SIGTERM won't work because of our custom entrypoint. Should be ok to use SIGKILL.
24
24
stop_signal : SIGKILL
25
- entrypoint : sh -c "echo 'sleeping for 10m' && sleep 600 && /run.sh"
25
+ entrypoint : sh -c "${NO_GRAFANA_STARTUP_DELAY:- echo 'sleeping for 10m' && sleep 600} && /run.sh"
26
26
27
27
grafana-matrix-notifier :
28
28
build :
Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ function show_help () {
43
43
echo " --local-rialto Use prebuilt local/rialto-bridge-node image when starting nodes"
44
44
echo " --local-rialto-parachain Use prebuilt local/rialto-parachain-collator image when starting nodes"
45
45
echo " --local-millau Use prebuilt local/millau-bridge-node image when starting nodes"
46
+ echo " --no-grafana-startup-delay Start Grafana without any delay (you may see some false alerts during startup)"
46
47
echo " "
47
48
echo " You can start multiple bridges at once by passing several bridge names:"
48
49
echo " ./run.sh rialto-millau rialto-parachain-millau westend-millau [stop|update]"
81
82
export RIALTO_BRIDGE_NODE_IMAGE=local/rialto-bridge-node
82
83
export RIALTO_PARACHAIN_COLLATOR_IMAGE=local/rialto-parachain-collator
83
84
export MILLAU_BRIDGE_NODE_IMAGE=local/millau-bridge-node
85
+ export IMMEDIATE_
84
86
shift
85
87
continue
86
88
;;
104
106
shift
105
107
continue
106
108
;;
109
+ --no-grafana-startup-delay)
110
+ export NO_GRAFANA_STARTUP_DELAY=" echo 'No Grafana startup delay'"
111
+ shift
112
+ continue
113
+ ;;
107
114
everything|all)
108
115
BRIDGES=(${RIALTO_MILLAU:- } ${RIALTO_PARACHAIN_MILLAU:- } ${WESTEND_MILLAU:- } )
109
116
NETWORKS=" ${RIALTO:- } ${RIALTO_PARACHAIN:- } ${MILLAU:- } "
You can’t perform that action at this time.
0 commit comments