[skip e2e] Modify log text according to naming conventions (#13711)

Signed-off-by: guoxiangzhou <xiangzhou.guo@zilliz.com>
This commit is contained in:
guoxiangzhou 2021-12-20 11:50:43 +08:00 committed by GitHub
parent 8248bd7d01
commit 71c595e696
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,15 +27,15 @@ func TestParamTable(t *testing.T) {
Params.Init()
assert.Equal(t, Params.InsertChannelPrefixName, "by-dev-insert-channel-")
t.Logf("data coord insert channel = %s", Params.InsertChannelPrefixName)
t.Logf("DataCoord insert channel = %s", Params.InsertChannelPrefixName)
assert.Equal(t, Params.TimeTickChannelName, "by-dev-datacoord-timetick-channel")
t.Logf("data coord timetick channel = %s", Params.TimeTickChannelName)
t.Logf("DataCoord timetick channel = %s", Params.TimeTickChannelName)
assert.Equal(t, Params.SegmentInfoChannelName, "by-dev-segment-info-channel")
t.Logf("data coord segment info channel = %s", Params.SegmentInfoChannelName)
t.Logf("DataCoord segment info channel = %s", Params.SegmentInfoChannelName)
assert.Equal(t, Params.DataCoordSubscriptionName, "by-dev-dataCoord")
t.Logf("data coord subscription channel = %s", Params.DataCoordSubscriptionName)
t.Logf("DataCoord subscription channel = %s", Params.DataCoordSubscriptionName)
}