Make sure the .timestamp file is synced for config updates

refs #11014
This commit is contained in:
Gunnar Beutner 2016-01-26 09:04:26 +01:00
parent 8859242c5b
commit c6be1c90aa
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ void ApiListener::ConfigGlobHandler(Dictionary::Ptr& config, const String& path,
Dictionary::Ptr ApiListener::LoadConfigDir(const String& dir)
{
Dictionary::Ptr config = new Dictionary();
Utility::GlobRecursive(dir, "*.conf", boost::bind(&ApiListener::ConfigGlobHandler, boost::ref(config), dir, _1), GlobFile);
Utility::GlobRecursive(dir, "*", boost::bind(&ApiListener::ConfigGlobHandler, boost::ref(config), dir, _1), GlobFile);
return config;
}