From c6be1c90aaeddd8c178dc4432d13d1374e9472f3 Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Tue, 26 Jan 2016 09:04:26 +0100 Subject: [PATCH] Make sure the .timestamp file is synced for config updates refs #11014 --- lib/remote/apilistener-filesync.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/remote/apilistener-filesync.cpp b/lib/remote/apilistener-filesync.cpp index 0b6d1dd16..c8aef7bd2 100644 --- a/lib/remote/apilistener-filesync.cpp +++ b/lib/remote/apilistener-filesync.cpp @@ -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; } -- 2.40.0