Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
neoppod
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Levin Zimmermann
neoppod
Commits
930af0fb
Commit
930af0fb
authored
Aug 08, 2012
by
Julien Muchembled
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
master: remove useless 'selector' argument of broadcastPartitionChanges
parent
30a228b3
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
13 deletions
+9
-13
neo/master/app.py
neo/master/app.py
+9
-13
No files found.
neo/master/app.py
View file @
930af0fb
...
...
@@ -251,20 +251,16 @@ class Application(object):
if
node_list
and
node
.
isRunning
():
node
.
notify
(
Packets
.
NotifyNodeInformation
(
node_list
))
def
broadcastPartitionChanges
(
self
,
cell_list
,
selector
=
None
):
def
broadcastPartitionChanges
(
self
,
cell_list
):
"""Broadcast a Notify Partition Changes packet."""
logging
.
debug
(
'broadcastPartitionChanges'
)
if
not
cell_list
:
return
if
not
selector
:
selector
=
lambda
n
:
n
.
isClient
()
or
n
.
isStorage
()
or
n
.
isAdmin
()
if
cell_list
:
self
.
pt
.
log
()
ptid
=
self
.
pt
.
setNextID
()
packet
=
Packets
.
NotifyPartitionChanges
(
ptid
,
cell_list
)
for
node
in
self
.
nm
.
getIdentifiedList
():
if
not
node
.
isRunning
():
continue
if
selector
(
node
):
# TODO: notify masters
if
node
.
isRunning
()
and
not
node
.
isMaster
():
node
.
notify
(
packet
)
def
provideService
(
self
):
...
...
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