Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix some function names #14020

Merged
merged 5 commits into from
Sep 10, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/bloombuild/planner/retention_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -621,7 +621,7 @@ func putMetasForLastNDays(t *testing.T, schemaCfg storageconfig.SchemaConfig, bl
}
}

// getMetasForLastNDays returns groups of continuous metas for the last N days.
// getGroupedMetasForLastNDays returns groups of continuous metas for the last N days.
func getGroupedMetasForLastNDays(t *testing.T, bloomStore *bloomshipper.BloomStore, tenant string, start model.Time, days int) [][][]bloomshipper.Meta {
metasGrouped := make([][][]bloomshipper.Meta, 0)
currentGroup := make([][]bloomshipper.Meta, 0)
Expand Down
4 changes: 2 additions & 2 deletions pkg/storage/chunk/client/grpc/grpc_server_mock_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ func NewTestStorageClient(cfg Config, schemaCfg config.SchemaConfig) (*StorageCl

//*********************** gRPC mock server *********************************//

// NewTableClient returns a new TableClient.
// NewTestTableClient returns a new TableClient.
func NewTestTableClient(cfg Config) (*TableClient, error) {
grpcClient, _, err := connectToGrpcServer(cfg.Address)
if err != nil {
Expand All @@ -155,7 +155,7 @@ func NewTestTableClient(cfg Config) (*TableClient, error) {
return client, nil
}

// NewStorageClient returns a new StorageClient.
// newTestStorageServer returns a new StorageClient.
func newTestStorageServer(cfg Config) *server {
client := &server{
Cfg: cfg,
Expand Down
Loading