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

    https://github.com/apache/spark/pull/1051#discussion_r14848204
  
    --- Diff: python/pyspark/conf.py ---
    @@ -99,6 +99,12 @@ def set(self, key, value):
             self._jconf.set(key, unicode(value))
             return self
     
    +    def setIfMissing(self, key, value):
    +        """Set a configuration property, if not already set."""
    +        if self.get(key) == None:
    --- End diff --
    
    ```
    if key not in self:
    ```


---
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.
---

Reply via email to