RedisWriter: make config object identifiers type-aware

SHA1(PackObject([Environment, Type, __name]))
This commit is contained in:
Alexander A. Klimov 2018-07-25 10:36:33 +02:00 committed by Michael Friedrich
parent b04b1d954e
commit 3e0a2f59e2
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ String RedisWriter::GetEnvironment()
String RedisWriter::GetIdentifier(const ConfigObject::Ptr& object)
{
return HashValue((Array::Ptr)new Array({GetEnvironment(), object->GetName()}));
return HashValue((Array::Ptr)new Array({GetEnvironment(), object->GetReflectionType()->GetName(), object->GetName()}));
}
String RedisWriter::CalculateCheckSumString(const String& str)