fixed bug
Project: http://git-wip-us.apache.org/repos/asf/incubator-sdap-ningesterpy/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-sdap-ningesterpy/commit/4d8f4839 Tree: http://git-wip-us.apache.org/repos/asf/incubator-sdap-ningesterpy/tree/4d8f4839 Diff: http://git-wip-us.apache.org/repos/asf/incubator-sdap-ningesterpy/diff/4d8f4839 Branch: refs/heads/master Commit: 4d8f4839709239e791a8ec4c9a4b3392d1f8c79e Parents: db43567 Author: Frank Greguska <[email protected]> Authored: Tue Jan 9 16:38:03 2018 -0800 Committer: Frank Greguska <[email protected]> Committed: Tue Jan 9 16:38:03 2018 -0800 ---------------------------------------------------------------------- ningesterpy/ningesterpy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-sdap-ningesterpy/blob/4d8f4839/ningesterpy/ningesterpy.py ---------------------------------------------------------------------- diff --git a/ningesterpy/ningesterpy.py b/ningesterpy/ningesterpy.py index 7c25c61..7b3e6b4 100644 --- a/ningesterpy/ningesterpy.py +++ b/ningesterpy/ningesterpy.py @@ -52,7 +52,7 @@ def run_processor_chain(): "%s missing required configuration options: %s" % (e.processor, e.missing_processor_args)) from e try: - input_data = json_format.Parse(parameters['input_data'], nexusproto.NexusTile) + input_data = json_format.Parse(parameters['input_data'], nexusproto.NexusTile()) except ParseError as e: raise BadRequest("input_data must be a NexusTile protobuf serialized as a string") from e
