From a1811deabf4e58772277c84c13536f9e928125c3 Mon Sep 17 00:00:00 2001 From: "zhiru.zhu" Date: Tue, 6 Aug 2019 19:36:42 +0800 Subject: [PATCH] Update MySQLConnectionPool.cpp Former-commit-id: 4b21d79885c0e28a24aceb266683e983174735cc --- cpp/src/db/MySQLConnectionPool.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/src/db/MySQLConnectionPool.cpp b/cpp/src/db/MySQLConnectionPool.cpp index 848287ebb3..b43126920e 100644 --- a/cpp/src/db/MySQLConnectionPool.cpp +++ b/cpp/src/db/MySQLConnectionPool.cpp @@ -5,7 +5,7 @@ namespace milvus { namespace engine { namespace meta { - // Do a thriftsimple form of in-use connection limiting: wait to return + // Do a simple form of in-use connection limiting: wait to return // a connection until there are a reasonably low number in use // already. Can't do this in create() because we're interested in // connections actually in use, not those created. Also note that