Cluster: Store config with default '.conf' suffix.

Refs #5860
This commit is contained in:
Michael Friedrich 2014-03-30 21:49:21 +02:00
parent 1eab42eadd
commit 2a90817c66
1 changed files with 1 additions and 1 deletions

View File

@ -1448,7 +1448,7 @@ void ClusterListener::MessageHandler(const Endpoint::Ptr& sender, const Dictiona
Dictionary::Ptr remoteFile = kv.second;
bool writeFile = false;
String hash = SHA256(kv.first);
String path = dir + "/" + hash;
String path = dir + "/" + hash + ".conf";
if (!localConfig->Contains(hash))
writeFile = true;