Skip to content
This repository has been archived by the owner on Mar 15, 2021. It is now read-only.

Commit

Permalink
I found it! I wasn't consuming a generator that I requested for conn_…
Browse files Browse the repository at this point in the history
…log; meaning the server was just eternally waiting for me to pull it
  • Loading branch information
brifordwylie committed Aug 2, 2014
1 parent 356a390 commit d73a4e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workbench/workers/pcap_graph.py
Expand Up @@ -79,10 +79,10 @@ def conn_log_graph(self, stream):
''' Build up a graph (nodes and edges from a Bro conn.log) '''

# The conn stream can be very large, so skipping for now.. ;p
conn_log = list(stream)
return

'''
conn_log = list(stream)
print 'Entering conn_log_graph...(%d rows)' % len(conn_log)
for row in stream:
Expand Down

0 comments on commit d73a4e9

Please sign in to comment.