Skip to content

Commit fa1e017

Browse files
committed
fix(dingo): exit 1 on unsupported mithril network
Signed-off-by: wcatz <waynecataldo@gmail.com>
1 parent 680086b commit fa1e017

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

charts/dingo/templates/statefulset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ spec:
6060
case ${NETWORK} in
6161
mainnet|preprod) __path=release-${NETWORK} ;;
6262
preview) __path=pre-release-${NETWORK} ;;
63-
*) echo "Mithril not supported on ${NETWORK}... skipping"; exit 0 ;;
63+
*) echo "Mithril not supported on ${NETWORK}"; exit 1 ;;
6464
esac
6565
export AGGREGATOR_ENDPOINT=https://aggregator.${__path}.api.mithril.network/aggregator
6666
if [ "$DEBUG_INIT" = "true" ]; then

0 commit comments

Comments
 (0)