Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
neo
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Kirill Smelkov
neo
Commits
d93fdacb
Commit
d93fdacb
authored
Apr 04, 2018
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
a7314b16
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
7 deletions
+5
-7
neo/client/app.py
neo/client/app.py
+2
-2
neo/lib/event.py
neo/lib/event.py
+1
-1
neo/lib/protocol.py
neo/lib/protocol.py
+2
-4
No files found.
neo/client/app.py
View file @
d93fdacb
...
@@ -228,7 +228,7 @@ class Application(ThreadedApplication):
...
@@ -228,7 +228,7 @@ class Application(ThreadedApplication):
"Too many connection failures to the primary master"
)
"Too many connection failures to the primary master"
)
logging
.
info
(
'Connected to %s'
,
self
.
primary_master_node
)
logging
.
info
(
'Connected to %s'
,
self
.
primary_master_node
)
try
:
try
:
# Request identification and required informations to be
NOTE
# Request identification and required informations to be
# operational. Might raise ConnectionClosed so that the new
# operational. Might raise ConnectionClosed so that the new
# primary can be looked-up again.
# primary can be looked-up again.
logging
.
info
(
'Initializing from master'
)
logging
.
info
(
'Initializing from master'
)
...
@@ -369,7 +369,7 @@ class Application(ThreadedApplication):
...
@@ -369,7 +369,7 @@ class Application(ThreadedApplication):
elif
self
.
_loading_invalidated
:
elif
self
.
_loading_invalidated
:
# oid has just been invalidated.
# oid has just been invalidated.
if
not
next_tid
:
if
not
next_tid
:
next_tid
=
self
.
_loading_invalidated
# NOTE stores up to head
next_tid
=
self
.
_loading_invalidated
self
.
_cache
.
store
(
oid
,
data
,
tid
,
next_tid
)
self
.
_cache
.
store
(
oid
,
data
,
tid
,
next_tid
)
# Else, we just reconnected to the master.
# Else, we just reconnected to the master.
finally
:
finally
:
...
...
neo/lib/event.py
View file @
d93fdacb
...
@@ -141,7 +141,7 @@ class EpollEventManager(object):
...
@@ -141,7 +141,7 @@ class EpollEventManager(object):
# to wake up (which may not even happen, and lead to EMFILE).
# to wake up (which may not even happen, and lead to EMFILE).
connector
.
shutdown
()()
connector
.
shutdown
()()
def
isIdle
(
self
):
# NOTE
def
isIdle
(
self
):
return
not
(
self
.
_pending_processing
or
self
.
writer_set
)
return
not
(
self
.
_pending_processing
or
self
.
writer_set
)
def
_addPendingConnection
(
self
,
conn
):
def
_addPendingConnection
(
self
,
conn
):
...
...
neo/lib/protocol.py
View file @
d93fdacb
...
@@ -684,8 +684,8 @@ class RequestIdentification(Packet):
...
@@ -684,8 +684,8 @@ class RequestIdentification(Packet):
_answer
=
PStruct
(
'accept_identification'
,
_answer
=
PStruct
(
'accept_identification'
,
PFNodeType
,
PFNodeType
,
PUUID
(
'my_uuid'
),
PUUID
(
'my_uuid'
),
PNumber
(
'num_partitions'
),
# XXX why here, not in pt updates ?
PNumber
(
'num_partitions'
),
PNumber
(
'num_replicas'
),
# XXX -> because current neo/py cannot change Npt at runtime
PNumber
(
'num_replicas'
),
PUUID
(
'your_uuid'
),
PUUID
(
'your_uuid'
),
)
)
...
@@ -738,7 +738,6 @@ class PartitionTable(Packet):
...
@@ -738,7 +738,6 @@ class PartitionTable(Packet):
PFRowList
,
PFRowList
,
)
)
# XXX dup wrt PartitionChanges ? -> no: here it is "send all rows" of PT
class
NotifyPartitionTable
(
Packet
):
class
NotifyPartitionTable
(
Packet
):
"""
"""
Send rows in a partition table to update other nodes. PM -> S, C.
Send rows in a partition table to update other nodes. PM -> S, C.
...
@@ -748,7 +747,6 @@ class NotifyPartitionTable(Packet):
...
@@ -748,7 +747,6 @@ class NotifyPartitionTable(Packet):
PFRowList
,
PFRowList
,
)
)
# XXX dup wrt NotifyPartitionTable ? -> no: here it s "send changes" of PT
class
PartitionChanges
(
Packet
):
class
PartitionChanges
(
Packet
):
"""
"""
Notify a subset of a partition table. This is used to notify changes.
Notify a subset of a partition table. This is used to notify changes.
...
...
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