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

@ -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();
}