Commit 6bcdbd26 authored by Eric Chiang's avatar Eric Chiang

Merge pull request #293 from set321go/master

Fixed db-url flag in standup-db.sh
parents a3f26be5 f6361f67
...@@ -40,7 +40,7 @@ until $(curl --output /dev/null --silent --fail http://localhost:5557/health); d ...@@ -40,7 +40,7 @@ until $(curl --output /dev/null --silent --fail http://localhost:5557/health); d
done done
# Create a client # Create a client
eval "$(./bin/dexctl -db-url=$DEX_DB_URL new-client http://127.0.0.1:5555/callback)" eval "$(./bin/dexctl --db-url=$DEX_DB_URL new-client http://127.0.0.1:5555/callback)"
# Set up connectors # Set up connectors
DEX_CONNECTORS_FILE=$(mktemp /tmp/dex-conn.XXXXX) DEX_CONNECTORS_FILE=$(mktemp /tmp/dex-conn.XXXXX)
...@@ -62,7 +62,7 @@ cat << EOF > $DEX_CONNECTORS_FILE ...@@ -62,7 +62,7 @@ cat << EOF > $DEX_CONNECTORS_FILE
] ]
EOF EOF
./bin/dexctl -db-url=$DEX_DB_URL set-connector-configs $DEX_CONNECTORS_FILE ./bin/dexctl --db-url=$DEX_DB_URL set-connector-configs $DEX_CONNECTORS_FILE
# Start the worker # Start the worker
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment