You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by gu...@apache.org on 2021/07/28 08:19:15 UTC

[spark] branch branch-3.2 updated: [SPARK-36270][BUILD][FOLLOWUP] Fix typo in the sbt memory setting

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

gurwls223 pushed a commit to branch branch-3.2
in repository https://gitbox.apache.org/repos/asf/spark.git


The following commit(s) were added to refs/heads/branch-3.2 by this push:
     new 3dc74e7  [SPARK-36270][BUILD][FOLLOWUP] Fix typo in the sbt memory setting
3dc74e7 is described below

commit 3dc74e7aa6c278bf0f43590eaf1f5d6a19cc8fbb
Author: Linhong Liu <li...@databricks.com>
AuthorDate: Wed Jul 28 17:17:55 2021 +0900

    [SPARK-36270][BUILD][FOLLOWUP] Fix typo in the sbt memory setting
    
    ### What changes were proposed in this pull request?
    remove the `$` in the `-Xms$256m` memory options
    
    ### Why are the changes needed?
    fix typo
    
    ### Does this PR introduce _any_ user-facing change?
    no
    
    ### How was this patch tested?
    not needed
    
    Closes #33557 from linhongliu-db/minor-fix.
    
    Authored-by: Linhong Liu <li...@databricks.com>
    Signed-off-by: Hyukjin Kwon <gu...@apache.org>
    (cherry picked from commit aff182633100e1e9ae329375422a7a7d41d6a275)
    Signed-off-by: Hyukjin Kwon <gu...@apache.org>
---
 build/sbt-launch-lib.bash | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build/sbt-launch-lib.bash b/build/sbt-launch-lib.bash
index c91d224..7261e01 100755
--- a/build/sbt-launch-lib.bash
+++ b/build/sbt-launch-lib.bash
@@ -119,7 +119,7 @@ get_mem_opts () {
   local mem=${1:-$sbt_default_mem}
   local codecache=128
 
-  echo "-Xms$256m -Xmx${mem}m -XX:ReservedCodeCacheSize=${codecache}m"
+  echo "-Xms256m -Xmx${mem}m -XX:ReservedCodeCacheSize=${codecache}m"
 }
 
 require_arg () {

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org