Skip to content

Commit

Permalink
Merge pull request #19 from threatstream/elastichoney
Browse files Browse the repository at this point in the history
fixed a bug
  • Loading branch information
jatrost committed Apr 28, 2015
2 parents 6849329 + f7bbd95 commit 10da969
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion normalizer/modules/elastichoney_events.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class ElastichoneyEvents(BaseNormalizer):
def normalize(self, data, channel, submission_timestamp, ignore_rfc1918=True):
o_data = json.loads(data)

if ignore_rfc1918 and self.is_RFC1918_addr(o_data['source_ip']):
if ignore_rfc1918 and self.is_RFC1918_addr(o_data['source']):
return []

session = {
Expand Down

0 comments on commit 10da969

Please sign in to comment.