milvus/internal/distributed/utils/util_test.go
yah01 6539a5ae2c
Refine DataCoord status (#27262)
Signed-off-by: yah01 <yah2er0ne@outlook.com>
2023-09-26 17:15:27 +08:00

21 lines
327 B
Go

package utils
import (
"testing"
"google.golang.org/grpc"
"github.com/milvus-io/milvus/pkg/util/paramtable"
)
func TestGracefulStopGrpcServer(t *testing.T) {
paramtable.Init()
// expected close by gracefulStop
s1 := grpc.NewServer()
GracefulStopGRPCServer(s1)
// expected not panic
GracefulStopGRPCServer(nil)
}