Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grpc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tci-gateway-module
Grpc
Commits
69f783df
Commit
69f783df
authored
8 years ago
by
Mark D. Roth
Browse files
Options
Downloads
Patches
Plain Diff
Allow LB policy name to be matched in a case-insensitive manner.
parent
c19049c3
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/core/ext/client_channel/lb_policy_registry.c
+5
-3
5 additions, 3 deletions
src/core/ext/client_channel/lb_policy_registry.c
test/core/client_channel/lb_policies_test.c
+2
-2
2 additions, 2 deletions
test/core/client_channel/lb_policies_test.c
with
7 additions
and
5 deletions
src/core/ext/client_channel/lb_policy_registry.c
+
5
−
3
View file @
69f783df
...
...
@@ -35,6 +35,8 @@
#include
<string.h>
#include
"src/core/lib/support/string.h"
#define MAX_POLICIES 10
static
grpc_lb_policy_factory
*
g_all_of_the_lb_policies
[
MAX_POLICIES
];
...
...
@@ -52,8 +54,8 @@ void grpc_lb_policy_registry_shutdown(void) {
void
grpc_register_lb_policy
(
grpc_lb_policy_factory
*
factory
)
{
int
i
;
for
(
i
=
0
;
i
<
g_number_of_lb_policies
;
i
++
)
{
GPR_ASSERT
(
0
!=
strcmp
(
factory
->
vtable
->
name
,
g_all_of_the_lb_policies
[
i
]
->
vtable
->
name
));
GPR_ASSERT
(
0
!=
gpr_
str
i
cmp
(
factory
->
vtable
->
name
,
g_all_of_the_lb_policies
[
i
]
->
vtable
->
name
));
}
GPR_ASSERT
(
g_number_of_lb_policies
!=
MAX_POLICIES
);
grpc_lb_policy_factory_ref
(
factory
);
...
...
@@ -66,7 +68,7 @@ static grpc_lb_policy_factory *lookup_factory(const char *name) {
if
(
name
==
NULL
)
return
NULL
;
for
(
i
=
0
;
i
<
g_number_of_lb_policies
;
i
++
)
{
if
(
0
==
strcmp
(
name
,
g_all_of_the_lb_policies
[
i
]
->
vtable
->
name
))
{
if
(
0
==
gpr_
str
i
cmp
(
name
,
g_all_of_the_lb_policies
[
i
]
->
vtable
->
name
))
{
return
g_all_of_the_lb_policies
[
i
];
}
}
...
...
This diff is collapsed.
Click to expand it.
test/core/client_channel/lb_policies_test.c
+
2
−
2
View file @
69f783df
...
...
@@ -554,7 +554,7 @@ static grpc_channel *create_client(const servers_fixture *f) {
arg_array
[
0
].
value
.
integer
=
RETRY_TIMEOUT
;
arg_array
[
1
].
type
=
GRPC_ARG_STRING
;
arg_array
[
1
].
key
=
GRPC_ARG_LB_POLICY_NAME
;
arg_array
[
1
].
value
.
string
=
"
round_robin
"
;
arg_array
[
1
].
value
.
string
=
"
ROUND_ROBIN
"
;
args
.
num_args
=
2
;
args
.
args
=
arg_array
;
...
...
@@ -669,7 +669,7 @@ static void test_get_channel_info() {
grpc_arg
arg
;
arg
.
type
=
GRPC_ARG_STRING
;
arg
.
key
=
GRPC_ARG_SERVICE_CONFIG
;
arg
.
value
.
string
=
"{
\"
l
b_policy_name
\"
:
\"
round_robin
\"
}"
;
arg
.
value
.
string
=
"{
\"
l
oadBalancingPolicy
\"
:
\"
ROUND_ROBIN
\"
}"
;
grpc_channel_args
*
args
=
grpc_channel_args_copy_and_add
(
NULL
,
&
arg
,
1
);
channel
=
grpc_insecure_channel_create
(
"ipv4:127.0.0.1:1234"
,
args
,
NULL
);
grpc_channel_args_destroy
(
args
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment