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
f43bdcec
Unverified
Commit
f43bdcec
authored
Jul 13, 2019
by
Ge Jun
Committed by
GitHub
Jul 13, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #824 from zyearn/fix_lalb_base_weight_to_zero
fix lalb be disabled wrongly
parents
96665f33
d4cc3f3f
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 @
f43bdcec
...
@@ -555,7 +555,7 @@ LocalityAwareLoadBalancer::Weight::~Weight() {
...
@@ -555,7 +555,7 @@ LocalityAwareLoadBalancer::Weight::~Weight() {
int64_t
LocalityAwareLoadBalancer
::
Weight
::
Disable
()
{
int64_t
LocalityAwareLoadBalancer
::
Weight
::
Disable
()
{
BAIDU_SCOPED_LOCK
(
_mutex
);
BAIDU_SCOPED_LOCK
(
_mutex
);
const
int64_t
saved
=
_weight
;
const
int64_t
saved
=
_weight
;
_base_weight
=
0
;
_base_weight
=
-
1
;
_weight
=
0
;
_weight
=
0
;
return
saved
;
return
saved
;
}
}
...
...
src/brpc/policy/locality_aware_load_balancer.h
View file @
f43bdcec
...
@@ -86,7 +86,7 @@ private:
...
@@ -86,7 +86,7 @@ private:
void
Describe
(
std
::
ostream
&
os
,
int64_t
now
);
void
Describe
(
std
::
ostream
&
os
,
int64_t
now
);
int64_t
Disable
();
int64_t
Disable
();
bool
Disabled
()
const
{
return
_base_weight
==
0
;
}
bool
Disabled
()
const
{
return
_base_weight
<
0
;
}
int64_t
MarkOld
(
size_t
index
);
int64_t
MarkOld
(
size_t
index
);
std
::
pair
<
int64_t
,
int64_t
>
ClearOld
();
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