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

hansva pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/hop.git


The following commit(s) were added to refs/heads/main by this push:
     new 7224af927f Hop encrypt needs a bit more memory, fixes #5673 (#5674)
7224af927f is described below

commit 7224af927f560745393386031d15df30a90f86d4
Author: Hans Van Akelyen <[email protected]>
AuthorDate: Thu Sep 4 17:07:37 2025 +0200

    Hop encrypt needs a bit more memory, fixes #5673 (#5674)
    
    * Hop encrypt needs a bit more memory, fixes #5673
    
    * remove stacktrace print
---
 assemblies/static/src/main/resources/hop-encrypt.sh            | 2 +-
 engine/src/main/java/org/apache/hop/encryption/HopEncrypt.java | 1 -
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/assemblies/static/src/main/resources/hop-encrypt.sh 
b/assemblies/static/src/main/resources/hop-encrypt.sh
index c207e853b1..e33db61148 100755
--- a/assemblies/static/src/main/resources/hop-encrypt.sh
+++ b/assemblies/static/src/main/resources/hop-encrypt.sh
@@ -34,7 +34,7 @@ fi
 # Settings for all OSses
 #
 if [ -z "${HOP_OPTIONS}" ]; then
-  HOP_OPTIONS="-Xmx64m"
+  HOP_OPTIONS="-Xmx256m"
 fi
 
 # optional line for attaching a debugger
diff --git a/engine/src/main/java/org/apache/hop/encryption/HopEncrypt.java 
b/engine/src/main/java/org/apache/hop/encryption/HopEncrypt.java
index b1d284c38f..a7620a0320 100644
--- a/engine/src/main/java/org/apache/hop/encryption/HopEncrypt.java
+++ b/engine/src/main/java/org/apache/hop/encryption/HopEncrypt.java
@@ -49,7 +49,6 @@ public class HopEncrypt {
         System.exit(0);
       } catch (Exception ex) {
         System.err.println("Error encrypting password");
-        ex.printStackTrace();
         System.exit(2);
       }
 

Reply via email to