mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Merge branch 'topic/timw/switch-broker-error-to-error'
* topic/timw/switch-broker-error-to-error: Downgrade broker clone FatalError to an Error
This commit is contained in:
commit
2c17c85f55
3 changed files with 9 additions and 3 deletions
4
CHANGES
4
CHANGES
|
@ -1,3 +1,7 @@
|
|||
8.0.0-dev.74 | 2025-05-08 13:46:54 -0700
|
||||
|
||||
* Downgrade broker clone FatalError to an Error (Tim Wojtulewicz, Corelight)
|
||||
|
||||
8.0.0-dev.72 | 2025-05-08 13:18:52 +0200
|
||||
|
||||
* probabilistic/BitVector: Add include <cstdint> (Arne Welzel, Corelight)
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
8.0.0-dev.72
|
||||
8.0.0-dev.74
|
||||
|
|
|
@ -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) )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue