manu
09/24/2019, 6:05 AMstd::string RegistryInterface::getActive() const {
ReadLock lock(mutex_);
return active_;
}
I expected to get called into "Status FilesystemConfigPlugin::genConfig(
std:map<std:string, std::string>& config)" since i used filesystem config_plugin
But internally while fetching the active config plugin in Registry code, it finds an Empty "" via extension path.
At the same time when osquery core internal calls it during config load or config refresh, active config plugin (i.e. filesystem) is fetched fine.
Is something wrong somewhere or i am missing something? I haven't dig too deep than this as of now.
But when calling from extension i see this diff behavior.