This commit is contained in:
aozhiwei 2019-06-05 19:26:33 +08:00
parent a6c8f4c85d
commit b9a9306b98

View File

@ -69,7 +69,7 @@ public:
std::string team_uuid = a8::Get(request, "team_uuid").GetString();
std::vector<std::string> 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;