From 8dc132dbd36bfe731795614ccbfd84a87b468d90 Mon Sep 17 00:00:00 2001 From: Benjamin Sergeant Date: Wed, 8 May 2019 13:56:36 -0700 Subject: [PATCH] change default ports for the ws command line tool --- ws/ws.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ws/ws.cpp b/ws/ws.cpp index c6d33ee9..105a76e9 100644 --- a/ws/ws.cpp +++ b/ws/ws.cpp @@ -30,7 +30,7 @@ int main(int argc, char** argv) CLI::App app{"ws is a websocket tool"}; app.require_subcommand(); - std::string url("ws://127.0.0.1:8080"); + std::string url("ws://127.0.0.1:8008"); std::string path; std::string user; std::string data; @@ -59,7 +59,7 @@ int main(int argc, char** argv) bool strict = false; bool stress = false; bool disableAutomaticReconnection = false; - int port = 8080; + int port = 8008; int redisPort = 6379; int statsdPort = 8125; int connectTimeOut = 60;