Avoid race condition in control/id_value btest

This commit is contained in:
Jon Siwek 2020-09-22 14:10:36 -07:00
parent e1bfb55736
commit 01d83c3204
3 changed files with 9 additions and 1 deletions

View file

@ -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 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) * GH-927: Fix circumvention of evaluation order in 'when' conditions (Jon Siwek, Corelight)

View file

@ -1 +1 @@
3.3.0-dev.282 3.3.0-dev.284

View file

@ -19,5 +19,9 @@ redef test_var = "This is the value from the controllee";
event Control::id_value_response(id: string, val: string) event Control::id_value_response(id: string, val: string)
{ {
print fmt("Got an id_value_response(%s, %s) event", id, val); print fmt("Got an id_value_response(%s, %s) event", id, val);
}
event Broker::peer_lost(endpoint: Broker::EndpointInfo, msg: string)
{
terminate(); terminate();
} }