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
6e39f039
Commit
6e39f039
authored
Jun 27, 2019
by
zhujiashun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix lalb be disabled wrongly
parent
40b13429
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
locality_aware_load_balancer.cpp
src/brpc/policy/locality_aware_load_balancer.cpp
+1
-1
locality_aware_load_balancer.h
src/brpc/policy/locality_aware_load_balancer.h
+1
-1
No files found.
src/brpc/policy/locality_aware_load_balancer.cpp
View file @
6e39f039
...
...
@@ -555,7 +555,7 @@ LocalityAwareLoadBalancer::Weight::~Weight() {
int64_t
LocalityAwareLoadBalancer
::
Weight
::
Disable
()
{
BAIDU_SCOPED_LOCK
(
_mutex
);
const
int64_t
saved
=
_weight
;
_base_weight
=
0
;
_base_weight
=
-
1
;
_weight
=
0
;
return
saved
;
}
...
...
src/brpc/policy/locality_aware_load_balancer.h
View file @
6e39f039
...
...
@@ -86,7 +86,7 @@ private:
void
Describe
(
std
::
ostream
&
os
,
int64_t
now
);
int64_t
Disable
();
bool
Disabled
()
const
{
return
_base_weight
==
0
;
}
bool
Disabled
()
const
{
return
_base_weight
==
-
1
;
}
int64_t
MarkOld
(
size_t
index
);
std
::
pair
<
int64_t
,
int64_t
>
ClearOld
();
...
...
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