diff options
author | ahothan <ahothan@cisco.com> | 2019-03-17 22:34:25 -0700 |
---|---|---|
committer | ahothan <ahothan@cisco.com> | 2019-03-17 22:43:25 -0700 |
commit | 634764bdb133f65515088be91f3a5049d6eb027e (patch) | |
tree | 159c29c7dcf558b5ab22dc1916c2c0f1c97611bb /docker/nfvbench-entrypoint.sh | |
parent | 727e863a026fc1f4fbb427bca86829627e954488 (diff) |
NFVBENCH-126 Remove socketio support (debt reduction)
Allow REST server to start in no-openstack mode
Fix pbr version (was set to 0.0.0)
Add docker-compose support
Update documentation for REST API
Change-Id: Ib520b09283ba6a878f802365292a7a829e6ccd09
Signed-off-by: ahothan <ahothan@cisco.com>
Diffstat (limited to 'docker/nfvbench-entrypoint.sh')
-rwxr-xr-x | docker/nfvbench-entrypoint.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/nfvbench-entrypoint.sh b/docker/nfvbench-entrypoint.sh index ed98ced..a7195a3 100755 --- a/docker/nfvbench-entrypoint.sh +++ b/docker/nfvbench-entrypoint.sh @@ -17,7 +17,7 @@ if [ -z "$1" ] || [ $1 != 'start_rest_server' ]; then tail -f /dev/null else - PARAMS="--server /tmp/http_root" + PARAMS="--server" if [ -n "$HOST" ]; then PARAMS+=" --host $HOST" fi |