Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
820901f9
Commit
820901f9
authored
Mar 14, 2007
by
jonas@perch.ndb.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ndb - bug#27087
Make sure not to handle API_FAILREQ if it's already handled
parent
5ea42fb2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
+15
-0
storage/ndb/src/kernel/blocks/suma/Suma.cpp
storage/ndb/src/kernel/blocks/suma/Suma.cpp
+15
-0
No files found.
storage/ndb/src/kernel/blocks/suma/Suma.cpp
View file @
820901f9
...
...
@@ -578,6 +578,18 @@ void Suma::execAPI_FAILREQ(Signal* signal)
return
;
}
if
(
c_failedApiNodes
.
get
(
failedApiNode
))
{
jam
();
return
;
}
if
(
!
c_subscriber_nodes
.
get
(
failedApiNode
))
{
jam
();
return
;
}
c_failedApiNodes
.
set
(
failedApiNode
);
c_connected_nodes
.
clear
(
failedApiNode
);
bool
found
=
removeSubscribersOnNode
(
signal
,
failedApiNode
);
...
...
@@ -591,9 +603,12 @@ void Suma::execAPI_FAILREQ(Signal* signal)
Ptr
<
Gcp_record
>
gcp
;
for
(
c_gcp_list
.
first
(
gcp
);
!
gcp
.
isNull
();
c_gcp_list
.
next
(
gcp
))
{
jam
();
ack
->
rep
.
gci
=
gcp
.
p
->
m_gci
;
if
(
gcp
.
p
->
m_subscribers
.
get
(
failedApiNode
))
{
jam
();
gcp
.
p
->
m_subscribers
.
clear
(
failedApiNode
);
ack
->
rep
.
senderRef
=
numberToRef
(
0
,
failedApiNode
);
sendSignal
(
SUMA_REF
,
GSN_SUB_GCP_COMPLETE_ACK
,
signal
,
SubGcpCompleteAck
::
SignalLength
,
JBB
);
...
...
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