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

@ -1,4 +1,8 @@
2.4-beta-42 | 2015-06-08 09:41:39 -0700
* Fix reporter errors with GridFTP traffic. (Robin Sommer)
2.4-beta-40 | 2015-06-06 08:20:52 -0700
* PE Analyzer: Change how we calculate the rva_table size. (Vlad Grigorescu)

View file

@ -1 +1 @@
2.4-beta-40
2.4-beta-42

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);