BrokerStore <-> Zeek Tables: cleanup and bug workaround

This commit is contained in:
Johanna Amann 2020-07-13 17:22:23 -07:00
parent 7c37226eaa
commit 1888d6acae
3 changed files with 14 additions and 4 deletions

View file

@ -921,7 +921,9 @@ void Manager::Process()
{
// Ensure that time gets update before processing broker messages, or events
// based on them might get scheduled wrong.
net_update_time(current_time());
// Fixme: unclear if final solution - see https://github.com/zeek/broker/issues/135
if ( use_real_time )
net_update_time(current_time());
bool had_input = false;