From 3e9d2d497dde2212db6ba1cc7cde7250f8b4faf1 Mon Sep 17 00:00:00 2001 From: Russell Jurney Date: Thu, 29 Aug 2013 15:14:09 -0700 Subject: [PATCH] Changed port number for realtime server from 8080 to 8083 to make the exaxmples work with the new realtime config. --- examples/bin/run_example_client.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/bin/run_example_client.sh b/examples/bin/run_example_client.sh index a821934d2fd..316034bec48 100755 --- a/examples/bin/run_example_client.sh +++ b/examples/bin/run_example_client.sh @@ -45,7 +45,7 @@ for delay in 5 30 30 30 30 30 30 30 30 30 30 echo "sleep for $delay seconds..." echo " " sleep $delay - curl -X POST 'http://localhost:8080/druid/v2/?w' -H 'content-type: application/json' -d "`cat ${QUERY_FILE}`" + curl -X POST 'http://localhost:8083/druid/v2/?w' -H 'content-type: application/json' -d "`cat ${QUERY_FILE}`" echo " " echo " " done