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
96587f58
Commit
96587f58
authored
Aug 09, 2004
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Forgott to update testBackuo w.r.t to ConfigRetreiver
parent
a95ad750
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
15 deletions
+22
-15
ndb/test/src/NdbBackup.cpp
ndb/test/src/NdbBackup.cpp
+16
-9
ndb/test/src/NdbRestarter.cpp
ndb/test/src/NdbRestarter.cpp
+6
-6
No files found.
ndb/test/src/NdbBackup.cpp
View file @
96587f58
...
...
@@ -69,17 +69,24 @@ NdbBackup::getFileSystemPathForNode(int _node_id){
/**
* Fetch configuration from management server
*/
ConfigRetriever
cr
;
ConfigRetriever
cr
(
0
,
NODE_TYPE_API
);
ndb_mgm_configuration
*
p
;
ndb_mgm_configuration
*
p
=
cr
.
getConfig
(
host
.
c_str
(),
port
,
0
,
NODE_TYPE_API
);
if
(
p
==
0
){
const
char
*
s
=
cr
.
getErrorString
();
if
(
s
==
0
)
s
=
"No error given!"
;
BaseString
tmp
;
tmp
.
assfmt
(
"%s:%d"
,
host
.
c_str
(),
port
);
NdbMgmHandle
handle
=
ndb_mgm_create_handle
();
if
(
handle
==
0
||
ndb_mgm_connect
(
handle
,
tmp
.
c_str
())
!=
0
&&
(
p
=
ndb_mgm_get_configuration
(
handle
,
0
))
==
0
){
ndbout
<<
"Could not fetch configuration"
<<
endl
;
ndbout
<<
s
<<
endl
;
return
NULL
;
const
char
*
s
=
0
;
if
(
p
==
0
&&
handle
!=
0
){
s
=
ndb_mgm_get_latest_error_msg
(
handle
);
if
(
s
==
0
)
s
=
"No error given!"
;
ndbout
<<
"Could not fetch configuration"
<<
endl
;
ndbout
<<
s
<<
endl
;
return
NULL
;
}
}
/**
...
...
ndb/test/src/NdbRestarter.cpp
View file @
96587f58
...
...
@@ -46,21 +46,21 @@ NdbRestarter::NdbRestarter(const char* _addr):
return
;
}
if
(
lcfg
.
i
tems
==
0
){
if
(
lcfg
.
i
ds
.
size
()
==
0
){
g_err
<<
"NdbRestarter - No management servers configured in local config file"
<<
endl
;
return
;
}
for
(
int
i
=
0
;
i
<
lcfg
.
i
tems
;
i
++
){
MgmtSrvrId
*
m
=
lcfg
.
ids
[
i
];
for
(
int
i
=
0
;
i
<
lcfg
.
i
ds
.
size
()
;
i
++
){
MgmtSrvrId
*
m
=
&
lcfg
.
ids
[
i
];
switch
(
m
->
type
){
case
MgmId_TCP
:
char
buf
[
255
];
snprintf
(
buf
,
255
,
"%s:%d"
,
m
->
data
.
tcp
.
remoteHost
,
m
->
data
.
tcp
.
port
);
snprintf
(
buf
,
255
,
"%s:%d"
,
m
->
name
.
c_str
(),
m
->
port
);
addr
.
assign
(
buf
);
host
.
assign
(
m
->
data
.
tcp
.
remoteHost
);
port
=
m
->
data
.
tcp
.
port
;
host
.
assign
(
m
->
name
.
c_str
()
);
port
=
m
->
port
;
return
;
break
;
case
MgmId_File
:
...
...
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