You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-11-06 16:09:29 +03:00
Made mcsadmin and postConfigure print a warning if SKIP_OAM_INIT is set.
This commit is contained in:
@@ -172,6 +172,13 @@ void setupSignalHandlers()
|
|||||||
|
|
||||||
int main(int argc, char* argv[])
|
int main(int argc, char* argv[])
|
||||||
{
|
{
|
||||||
|
|
||||||
|
// print a warning if this is a developer build
|
||||||
|
#ifdef SKIP_OAM_INIT
|
||||||
|
cout << "SKIP_OAM_INIT is set" << endl;
|
||||||
|
sleep(2);
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef _MSC_VER
|
#ifndef _MSC_VER
|
||||||
setuid(0); // set effective ID to root; ignore return status
|
setuid(0); // set effective ID to root; ignore return status
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -215,6 +215,13 @@ typedef struct _thread_data_t
|
|||||||
|
|
||||||
int main(int argc, char* argv[])
|
int main(int argc, char* argv[])
|
||||||
{
|
{
|
||||||
|
|
||||||
|
// print a warning if this is a developer build
|
||||||
|
#ifdef SKIP_OAM_INIT
|
||||||
|
cout << "SKIP_OAM_INIT is set" << endl;
|
||||||
|
sleep(2);
|
||||||
|
#endif
|
||||||
|
|
||||||
Oam oam;
|
Oam oam;
|
||||||
string parentOAMModuleHostName;
|
string parentOAMModuleHostName;
|
||||||
ChildModuleList childmodulelist;
|
ChildModuleList childmodulelist;
|
||||||
|
|||||||
Reference in New Issue
Block a user