Fix node state data race in querycoord (#17198)

Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
pull/17206/head
congqixia 2022-05-25 10:43:59 +08:00 committed by GitHub
parent 4293b640b2
commit 37d7d7baf8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -438,7 +438,7 @@ func (qn *queryNode) getNodeInfo() (Node, error) {
return &queryNode{
id: qn.id,
address: qn.address,
state: qn.state,
state: qn.getState(),
totalMem: qn.totalMem,
memUsage: qn.memUsage,