This is an automated email from the ASF dual-hosted git repository. fgreg pushed a commit to branch v1.0.0-rc1 in repository https://gitbox.apache.org/repos/asf/incubator-sdap-ningesterpy.git
commit 4d8f4839709239e791a8ec4c9a4b3392d1f8c79e Author: Frank Greguska <[email protected]> AuthorDate: Tue Jan 9 16:38:03 2018 -0800 fixed bug --- ningesterpy/ningesterpy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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
