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

admission: carve out some new files #86065

Merged
merged 9 commits into from
Aug 19, 2022
9 changes: 8 additions & 1 deletion pkg/util/admission/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,15 @@ load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "admission",
srcs = [
"admission.go",
"disk_bandwidth.go",
"doc.go",
"grant_coordinator.go",
"granter.go",
"io_load_listener.go",
"kv_slot_adjuster.go",
"sql_cpu_overload_indicator.go",
"store_token_estimation.go",
"tokens_linear_model.go",
"work_queue.go",
],
importpath = "github.com/cockroachdb/cockroach/pkg/util/admission",
Expand Down Expand Up @@ -35,7 +40,9 @@ go_test(
srcs = [
"disk_bandwidth_test.go",
"granter_test.go",
"io_load_listener_test.go",
"store_token_estimation_test.go",
"tokens_linear_model_test.go",
"work_queue_test.go",
],
data = glob(["testdata/**"]),
Expand Down
546 changes: 546 additions & 0 deletions pkg/util/admission/admission.go

Large diffs are not rendered by default.

129 changes: 0 additions & 129 deletions pkg/util/admission/doc.go

This file was deleted.

Loading