INNER CODE UNIT · Java
EDGE_URI
kbastani/event-sourcing-microservices-example · deployment/sbin/generate-parallel.sh:24
export EDGE_URI=${1:-localhost:9000}
USER_STATUS="DOWN"
FRIEND_STATUS="DOWN"
RECOMMENDATION_STATUS="DOWN"
IDS=()
export IDS
while getopts ':hs:' option; do
case "$option" in
h) echo "$usage"
exit
;;
s) seed=$OPTARG
;;
:) printf "missing argument for -%s\n" "$OPTARG" >&2
echo "$usage" >&2
exit 1
;;