Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
B
brpc
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
brpc
Commits
0d9ae8f8
Commit
0d9ae8f8
authored
Dec 04, 2019
by
yuanfeng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
✏
fix typo
parent
c05d3317
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
discovery_naming_service.cpp
src/brpc/policy/discovery_naming_service.cpp
+2
-2
No files found.
src/brpc/policy/discovery_naming_service.cpp
View file @
0d9ae8f8
...
...
@@ -41,7 +41,7 @@ DEFINE_string(discovery_api_addr, DEFAULT_DISCOVERY_API_ADDR, "The address of di
DEFINE_int32
(
discovery_timeout_ms
,
3000
,
"Timeout for discovery requests"
);
DEFINE_string
(
discovery_env
,
"prod"
,
"Environment of services"
);
DEFINE_string
(
discovery_status
,
"1"
,
"Status of services. 1 for ready, 2 for not ready, 3 for all"
);
DEFINE_string
(
discovery_zone
,
""
,
"Zone of
services"
);
DEFINE_string
(
discovery_zone
,
""
,
"Zone of services"
);
DEFINE_int32
(
discovery_renew_interval_s
,
30
,
"The interval between two consecutive renews"
);
DEFINE_int32
(
discovery_reregister_threshold
,
3
,
"The renew error threshold beyond"
" which Register would be called again"
);
...
...
@@ -353,7 +353,7 @@ int DiscoveryNamingService::GetServers(const char* service_name,
"/discovery/fetchs?appid=%s&env=%s&status=%s"
,
service_name
,
FLAGS_discovery_env
.
c_str
(),
FLAGS_discovery_status
.
c_str
());
if
(
!
FLAGS_discovery_zone
.
empty
())
{
uri_str
.
append
(
"&zone="
,
6
);
uri_str
.
append
(
"&zone="
);
uri_str
.
append
(
FLAGS_discovery_zone
);
}
cntl
.
http_request
().
uri
()
=
uri_str
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment