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
b9aa2bcf
Commit
b9aa2bcf
authored
May 18, 2006
by
msvensson@shellback.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make ndb_waiter poll the ndb_mgmd for status more often
parent
ea218b44
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
storage/ndb/tools/waiter.cpp
storage/ndb/tools/waiter.cpp
+2
-2
No files found.
storage/ndb/tools/waiter.cpp
View file @
b9aa2bcf
...
...
@@ -92,7 +92,7 @@ int main(int argc, char** argv){
wait_status
=
NDB_MGM_NODE_STATUS_STARTED
;
}
if
(
waitClusterStatus
(
_hostName
,
wait_status
,
_timeout
)
!=
0
)
if
(
waitClusterStatus
(
_hostName
,
wait_status
,
_timeout
*
10
)
!=
0
)
return
NDBT_ProgramExit
(
NDBT_FAILED
);
return
NDBT_ProgramExit
(
NDBT_OK
);
}
...
...
@@ -305,7 +305,7 @@ waitClusterStatus(const char* _addr,
}
g_info
<<
"Waiting for cluster enter state "
<<
ndb_mgm_get_node_status_string
(
_status
)
<<
endl
;
NdbSleep_
SecSleep
(
1
);
NdbSleep_
MilliSleep
(
100
);
attempts
++
;
}
return
0
;
...
...
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