diff options
author | 2019-12-06 04:02:59 -0800 | |
---|---|---|
committer | 2019-12-06 04:04:13 -0800 | |
commit | 65f5711d5ec9c8236583202a3371dabda07486d3 (patch) | |
tree | 30632bdb443d579d967a5ab297ef0d6ea3901c17 /docker/barometer-ves/start_ves_app.sh | |
parent | ed42941aa613ba9612ce53c0e812309d14e35955 (diff) |
Py2 to Py3 migration updates for VES App and the Dockerfile
Signed-off-by: jabirkkclt <jabir.kanhira.kadavathu@intel.com>
Change-Id: I2e4934518f46afb060748ab08fd2ea9bfc0271d6
Diffstat (limited to 'docker/barometer-ves/start_ves_app.sh')
-rw-r--r-- | docker/barometer-ves/start_ves_app.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/barometer-ves/start_ves_app.sh b/docker/barometer-ves/start_ves_app.sh index f859bc45..0ac756c8 100644 --- a/docker/barometer-ves/start_ves_app.sh +++ b/docker/barometer-ves/start_ves_app.sh @@ -24,4 +24,4 @@ fi #wait for kafka service to be available while ! nc $ves_kafka_host 9092 < /dev/null; do sleep 1; done -python ves_app.py --events-schema="./yaml/$YAML_FILE" --config="./config/ves_app_config.conf" +python3 ves_app.py --events-schema="./yaml/$YAML_FILE" --config="./config/ves_app_config.conf" |