This is an automated email from the ASF dual-hosted git repository.

agrove pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion-comet.git


The following commit(s) were added to refs/heads/main by this push:
     new 89bfa1ece Remove hard-coded config default (#1503)
89bfa1ece is described below

commit 89bfa1ece65dff0acc17099d0443b4314497fe45
Author: Andy Grove <[email protected]>
AuthorDate: Tue Mar 11 22:03:53 2025 -0600

    Remove hard-coded config default (#1503)
---
 spark/src/main/scala/org/apache/spark/Plugins.scala | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/spark/src/main/scala/org/apache/spark/Plugins.scala 
b/spark/src/main/scala/org/apache/spark/Plugins.scala
index 644ec81b7..ac3ec8c3f 100644
--- a/spark/src/main/scala/org/apache/spark/Plugins.scala
+++ b/spark/src/main/scala/org/apache/spark/Plugins.scala
@@ -101,7 +101,7 @@ class CometDriverPlugin extends DriverPlugin with Logging 
with ShimCometDriverPl
    * unified memory manager.
    */
   private def shouldOverrideMemoryConf(conf: SparkConf): Boolean = {
-    conf.getBoolean(CometConf.COMET_ENABLED.key, true) && (
+    conf.getBoolean(CometConf.COMET_ENABLED.key, 
CometConf.COMET_ENABLED.defaultValue.get) && (
       conf.getBoolean(
         CometConf.COMET_EXEC_SHUFFLE_ENABLED.key,
         CometConf.COMET_EXEC_SHUFFLE_ENABLED.defaultValue.get) ||


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to