mirror of
https://github.com/zeek/zeek.git
synced 2025-10-10 02:28:21 +00:00
Changing an error in the input framework to a warning.
This commit is contained in:
parent
464732bfce
commit
41ef1072ec
8 changed files with 13 additions and 8 deletions
|
@ -696,8 +696,8 @@ bool Manager::RemoveStream(Stream *i)
|
|||
|
||||
if ( i->removed )
|
||||
{
|
||||
reporter->Error("Stream %s is already queued for removal. Ignoring remove.", i->name.c_str());
|
||||
return false;
|
||||
reporter->Warning("Stream %s is already queued for removal. Ignoring remove.", i->name.c_str());
|
||||
return true;
|
||||
}
|
||||
|
||||
i->removed = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue