Downgrade broker clone FatalError to an Error

This commit is contained in:
Tim Wojtulewicz 2025-05-08 12:00:38 -07:00
parent 7583651bec
commit e00942c021

View file

@ -2092,8 +2092,10 @@ detail::StoreHandleVal* Manager::MakeClone(const string& name, double resync_int
auto handle = new detail::StoreHandleVal{*result};
Ref(handle);
if ( ! handle->proxy.valid() )
reporter->FatalError("Failed to create clone for data store %s", name.c_str());
if ( ! handle->proxy.valid() ) {
reporter->Error("Failed to create clone for data store %s", name.c_str());
return nullptr;
}
data_stores.emplace(name, handle);
if ( ! iosource_mgr->RegisterFd(handle->proxy.mailbox().descriptor(), this) )