Github user HyukjinKwon commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22962#discussion_r233130221
  
    --- Diff: python/pyspark/taskcontext.py ---
    @@ -147,8 +147,8 @@ def __init__(self):
         @classmethod
         def _getOrCreate(cls):
             """Internal function to get or create global BarrierTaskContext."""
    -        if cls._taskContext is None:
    -            cls._taskContext = BarrierTaskContext()
    +        if not isinstance(cls._taskContext, BarrierTaskContext):
    +            cls._taskContext = object.__new__(cls)
    --- End diff --
    
    Can we get rid of the rewrite all? It's never a good idea to overwrite them 
unless it's absolutely required.


---

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

Reply via email to