Do not execute omnishell commands in debug mode.

Fixes pandora_enterprise#8087.
This commit is contained in:
Ramon Novoa 2021-10-18 12:29:45 +02:00
parent aa2eb08edb
commit f19fd978ac
1 changed files with 7 additions and 8 deletions

View File

@ -2047,16 +2047,15 @@ Pandora_Windows_Service::pandora_run (int forced_run) {
this->pandora_init (); this->pandora_init ();
} }
this->checkCollections (); this->checkCollections ();
}
/* Execute omnishell commands */
/* Execute omnishell commands */ omnishell_path = '"'+Pandora::getPandoraInstallDir ();
omnishell_path = '"'+Pandora::getPandoraInstallDir (); omnishell_path += "util\\omnishell_client.exe\" \"" + conf_file+"\"";
omnishell_path += "util\\omnishell_client.exe\" \"" + conf_file+"\""; if (getPandoraDebug () != false) {
if (getPandoraDebug () != false) { pandoraLog ("Omnishell: Running");
pandoraLog ("Omnishell: Running"); }
omnishell_output = getValueFromCmdExec(omnishell_path.c_str(), 6000000);
} }
omnishell_output = getValueFromCmdExec(omnishell_path.c_str(), 6000000);
server_addr = conf->getValue ("server_ip"); server_addr = conf->getValue ("server_ip");