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

Automated fix for refs/heads/local_creds #20

Open
wants to merge 9 commits into
base: local_creds
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 0 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report_python.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ labels: kind/bug, priority/P2, lang/Python
assignees:
- gnossen
- XuanWang-Amos
- sreenithi
- sourabhsinghs

---

Expand Down
2 changes: 0 additions & 2 deletions .github/ISSUE_TEMPLATE/feature_request_python.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ labels: kind/enhancement, priority/P2, lang/Python
assignees:
- gnossen
- XuanWang-Amos
- sreenithi
- sourabhsinghs

---

Expand Down
34 changes: 0 additions & 34 deletions .github/workflows/update-artifacts-branch.yaml

This file was deleted.

36 changes: 29 additions & 7 deletions BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -227,11 +227,11 @@ config_setting(
python_config_settings()

# This should be updated along with build_handwritten.yaml
g_stands_for = "gesundheit" # @unused
g_stands_for = "gladiator" # @unused

core_version = "43.0.0" # @unused
core_version = "42.0.0" # @unused

version = "1.67.0-dev" # @unused
version = "1.66.0-dev" # @unused

GPR_PUBLIC_HDRS = [
"include/grpc/support/alloc.h",
Expand Down Expand Up @@ -579,6 +579,7 @@ grpc_cc_library(
],
visibility = ["@grpc:public"],
deps = [
"api_trace",
"channel_arg_names",
"channel_stack_builder",
"config",
Expand Down Expand Up @@ -658,6 +659,7 @@ grpc_cc_library(
"@grpc:public",
],
deps = [
"api_trace",
"channel_arg_names",
"channel_stack_builder",
"config",
Expand Down Expand Up @@ -1149,6 +1151,7 @@ grpc_cc_library(
],
tags = ["nofixdeps"],
deps = [
"api_trace",
"channel",
"channel_create",
"config",
Expand Down Expand Up @@ -1326,6 +1329,7 @@ grpc_cc_library(
],
visibility = ["@grpc:public"],
deps = [
"api_trace",
"gpr",
"grpc_base",
"grpc_public_hdrs",
Expand Down Expand Up @@ -1473,6 +1477,21 @@ grpc_cc_library(
],
)

grpc_cc_library(
name = "api_trace",
hdrs = [
"//src/core:lib/surface/api_trace.h",
],
external_deps = [
"absl/log:log",
],
language = "c++",
deps = [
"gpr",
"grpc_trace",
],
)

grpc_cc_library(
name = "byte_buffer",
srcs = [
Expand Down Expand Up @@ -1744,6 +1763,7 @@ grpc_cc_library(
language = "c++",
visibility = ["@grpc:alt_grpc_base_legacy"],
deps = [
"api_trace",
"channel_arg_names",
"channelz",
"cpp_impl_of",
Expand Down Expand Up @@ -1789,6 +1809,7 @@ grpc_cc_library(
language = "c++",
visibility = ["@grpc:alt_grpc_base_legacy"],
deps = [
"api_trace",
"channel",
"channelz",
"config",
Expand Down Expand Up @@ -1884,6 +1905,7 @@ grpc_cc_library(
language = "c++",
visibility = ["@grpc:alt_grpc_base_legacy"],
deps = [
"api_trace",
"call_combiner",
"call_tracer",
"channel",
Expand Down Expand Up @@ -2013,6 +2035,7 @@ grpc_cc_library(
public_hdrs = GRPC_PUBLIC_HDRS + GRPC_PUBLIC_EVENT_ENGINE_HDRS,
visibility = ["@grpc:alt_grpc_base_legacy"],
deps = [
"api_trace",
"call_combiner",
"call_tracer",
"channel",
Expand Down Expand Up @@ -2276,6 +2299,7 @@ grpc_cc_library(
public_hdrs = GRPC_PUBLIC_HDRS,
visibility = ["@grpc:public"],
deps = [
"api_trace",
"channel_arg_names",
"channelz",
"config",
Expand Down Expand Up @@ -3279,7 +3303,6 @@ grpc_cc_library(
"//src/core:experiments",
"//src/core:gpr_atm",
"//src/core:gpr_spinlock",
"//src/core:latent_see",
"//src/core:time",
"//src/core:useful",
],
Expand Down Expand Up @@ -4035,7 +4058,6 @@ grpc_cc_library(
deps = [
"gpr",
"tsi_base",
"//src/core:dump_args",
"//src/core:slice",
"//src/core:useful",
],
Expand Down Expand Up @@ -4068,6 +4090,7 @@ grpc_cc_library(
language = "c++",
visibility = ["@grpc:public"],
deps = [
"api_trace",
"exec_ctx",
"gpr",
"grpc_base",
Expand Down Expand Up @@ -4570,13 +4593,11 @@ grpc_cc_library(
"gpr_platform",
"grpc_trace",
"hpack_parse_result",
"stats",
"//src/core:hpack_constants",
"//src/core:metadata_batch",
"//src/core:no_destruct",
"//src/core:parsed_metadata",
"//src/core:slice",
"//src/core:unique_ptr_with_bitset",
],
)

Expand Down Expand Up @@ -4832,6 +4853,7 @@ grpc_cc_library(
"//src/core:iomgr_fwd",
"//src/core:iomgr_port",
"//src/core:match",
"//src/core:max_concurrent_streams_policy",
"//src/core:memory_quota",
"//src/core:metadata_batch",
"//src/core:metadata_info",
Expand Down
Loading