mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Avoid race condition in control/id_value btest
This commit is contained in:
parent
e1bfb55736
commit
01d83c3204
3 changed files with 9 additions and 1 deletions
4
CHANGES
4
CHANGES
|
@ -1,4 +1,8 @@
|
|||
|
||||
3.3.0-dev.284 | 2020-09-22 14:10:36 -0700
|
||||
|
||||
* Avoid race condition in control/id_value btest (Jon Siwek, Corelight)
|
||||
|
||||
3.3.0-dev.282 | 2020-09-22 11:08:56 -0700
|
||||
|
||||
* GH-927: Fix circumvention of evaluation order in 'when' conditions (Jon Siwek, Corelight)
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
3.3.0-dev.282
|
||||
3.3.0-dev.284
|
||||
|
|
|
@ -19,5 +19,9 @@ redef test_var = "This is the value from the controllee";
|
|||
event Control::id_value_response(id: string, val: string)
|
||||
{
|
||||
print fmt("Got an id_value_response(%s, %s) event", id, val);
|
||||
}
|
||||
|
||||
event Broker::peer_lost(endpoint: Broker::EndpointInfo, msg: string)
|
||||
{
|
||||
terminate();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue