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
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
nexedi
MariaDB
Commits
96065777
Commit
96065777
authored
Mar 08, 2005
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug#8918 - ndb - improve error message when stopping due to StartFailureTimeout
parent
eab1e62c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
3 deletions
+17
-3
ndb/src/kernel/blocks/ndbcntr/NdbcntrMain.cpp
ndb/src/kernel/blocks/ndbcntr/NdbcntrMain.cpp
+17
-3
No files found.
ndb/src/kernel/blocks/ndbcntr/NdbcntrMain.cpp
View file @
96065777
...
...
@@ -103,8 +103,22 @@ void Ndbcntr::execCONTINUEB(Signal* signal)
}
Uint64
now
=
NdbTick_CurrentMillisecond
();
if
(
now
>
c_start
.
m_startFailureTimeout
){
ndbrequire
(
false
);
if
(
now
>
c_start
.
m_startFailureTimeout
)
{
jam
();
Uint32
to_3
=
0
;
const
ndb_mgm_configuration_iterator
*
p
=
theConfiguration
.
getOwnConfigIterator
();
ndb_mgm_get_int_parameter
(
p
,
CFG_DB_START_FAILURE_TIMEOUT
,
&
to_3
);
BaseString
tmp
;
tmp
.
append
(
"Shutting down node as total restart time exceeds "
" StartFailureTimeout as set in config file "
);
if
(
to_3
==
0
)
tmp
.
append
(
" 0 (inifinite)"
);
else
tmp
.
appfmt
(
" %d"
,
to_3
);
progError
(
__LINE__
,
ERR_SYSTEM_ERROR
,
tmp
.
c_str
());
}
signal
->
theData
[
0
]
=
ZSTARTUP
;
...
...
@@ -413,7 +427,7 @@ inline
Uint64
setTimeout
(
Uint64
time
,
Uint32
timeoutValue
){
if
(
timeoutValue
==
0
)
return
~
0
;
return
~
(
Uint64
)
0
;
return
time
+
timeoutValue
;
}
...
...
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