Skip to content

Commit

Permalink
[lambda][rule] fixing bug in classifier during type conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
ryandeivert committed Nov 8, 2017
1 parent d0de528 commit 82cb980
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stream_alert/rule_processor/classifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ def _convert_type(cls, payload, schema):
if key == 'streamalert:envelope_keys' and not isinstance(payload[key], dict):
continue

cls._convert_type(payload[key], schema[key])
return cls._convert_type(payload[key], schema[key])

elif isinstance(value, list):
pass
Expand Down

0 comments on commit 82cb980

Please sign in to comment.