Files
siembol/deployment/docker/storm-entrypoint.sh
Marian Novotny 3415ce3909 Upgrading java to java 11 (java 13 in tests) (#405)
Upgrading Storm to 2.3.0
Supporting downloading http enrichment tables
Remove multiline string dependency
2021-11-04 16:12:54 +00:00

9 lines
293 B
Bash
Executable File

#!/bin/sh
# if command starts with something that is not executable, prepend our deploy command
if ! which "${1}" >/dev/null; then
set -- storm jar $TOPOLOGY_JAR $TOPOLOGY_CLASS "$@" -c nimbus.seeds="${NIMBUS_SEEDS:-"[\"nimbus\"]"}" -c nimbus.thrift.port=${NIMBUS_PORT:-6627}
fi
exec "$@"