-
Notifications
You must be signed in to change notification settings - Fork 1
Json matcher small bug #23
Copy link
Copy link
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Bug in JsonParser json_parser.py line 61:
content_parser_name = config.get("content_parser", "JsonMatcherParser")should be something like:
content_parser_name = config["parsers"][name].get("content_parser", "JsonMatcherParser")Currently the line is always assigning "JsonMatcherParser" to content_parser_name as it can not reach the actual place of the field in the config dict.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working