From b9a9306b981167513229affe31ad1114116459eb Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Wed, 5 Jun 2019 19:26:33 +0800 Subject: [PATCH] 1 --- server/wsproxy/GCListener.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/wsproxy/GCListener.cc b/server/wsproxy/GCListener.cc index 0734db0..40a4d85 100644 --- a/server/wsproxy/GCListener.cc +++ b/server/wsproxy/GCListener.cc @@ -69,7 +69,7 @@ public: std::string team_uuid = a8::Get(request, "team_uuid").GetString(); std::vector strings; a8::Split(team_uuid, strings, '_'); - if (strings.size() > 2) { + if (strings.size() >= 2) { int node_id = a8::XValue(strings[0]); if (node_id != App::Instance()->node_id) { std::string host;