Fix reporter errors with GridFTP traffic.

This commit is contained in:
Robin Sommer 2015-06-08 09:41:39 -07:00
parent 659de2b357
commit 582da62d04
3 changed files with 6 additions and 2 deletions

View file

@ -86,7 +86,7 @@ event gridftp_possibility_timeout(c: connection)
{
# only remove if we did not already detect it and the connection
# is not yet at its end.
if ( "gridftp-data" !in c$service && ! c$conn?$service )
if ( "gridftp-data" !in c$service && ! (c?$conn && c$conn?$service) )
{
ConnThreshold::delete_bytes_threshold(c, size_threshold, T);
ConnThreshold::delete_bytes_threshold(c, size_threshold, F);