Add DataNode implementation Assertion (#9144)

Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
pull/9150/head
congqixia 2021-10-03 19:46:05 +08:00 committed by GitHub
parent e20445987e
commit becf6c8f7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -64,6 +64,9 @@ const (
const illegalRequestErrStr = "Illegal request"
// makes sure DataNode implements types.DataNode
var _ types.DataNode = (*DataNode)(nil)
// DataNode communicates with outside services and unioun all
// services in datanode package.
//