Github user megatron-me-uk commented on a diff in the pull request:

    https://github.com/apache/spark/pull/6262#discussion_r33139983
  
    --- Diff: python/pyspark/rdd.py ---
    @@ -704,7 +704,16 @@ def pipe_objs(out):
                         out.write(s.encode('utf-8'))
                     out.close()
                 Thread(target=pipe_objs, args=[pipe.stdin]).start()
    -            return (x.rstrip(b'\n').decode('utf-8') for x in 
iter(pipe.stdout.readline, b''))
    +
    +            def check_return_code():
    +                pipe.wait()
    +                if pipe.returncode:
    +                    raise Exception("Pipe function `%s' exited "
    +                                    "with error code %d" % (command, 
pipe.returncode))
    +                else:
    +                    return None
    --- End diff --
    
    Yes, good point I will change it.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to