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

jbonofre pushed a commit to branch activemq-6.1.x
in repository https://gitbox.apache.org/repos/asf/activemq.git


The following commit(s) were added to refs/heads/activemq-6.1.x by this push:
     new 5762e327dc [AMQ-9531] Fix regression causing export command to fail
5762e327dc is described below

commit 5762e327dc2547e26cf142e80f0f92541a625427
Author: Matt Pavlovich <[email protected]>
AuthorDate: Thu Jul 11 19:24:10 2024 -0500

    [AMQ-9531] Fix regression causing export command to fail
    
    (cherry picked from commit d9673c76faa9277774309491191900893b6827e8)
---
 .../org/apache/activemq/console/command/store/StoreExporter.java    | 6 +++---
 assembly/src/main/descriptors/common-bin.xml                        | 1 +
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git 
a/activemq-console/src/main/java/org/apache/activemq/console/command/store/StoreExporter.java
 
b/activemq-console/src/main/java/org/apache/activemq/console/command/store/StoreExporter.java
index 2bb47a7c4e..1674239f3e 100644
--- 
a/activemq-console/src/main/java/org/apache/activemq/console/command/store/StoreExporter.java
+++ 
b/activemq-console/src/main/java/org/apache/activemq/console/command/store/StoreExporter.java
@@ -263,15 +263,15 @@ public class StoreExporter {
         return messageRecord;
     }
 
-    public File getFile() {
+    public File getFilehandle() {
         return file;
     }
 
     public void setFile(String file) {
-        setFile(new File(file));
+        setFilehandle(new File(file));
     }
 
-    public void setFile(File file) {
+    public void setFilehandle(File file) {
         this.file = file;
     }
 
diff --git a/assembly/src/main/descriptors/common-bin.xml 
b/assembly/src/main/descriptors/common-bin.xml
index 0276d8fa8d..e128769961 100644
--- a/assembly/src/main/descriptors/common-bin.xml
+++ b/assembly/src/main/descriptors/common-bin.xml
@@ -145,6 +145,7 @@
         <include>jakarta.transaction:jakarta.transaction-api</include>
         <include>${pom.groupId}:activemq-web</include>
         <include>org.fusesource.hawtbuf:hawtbuf</include>
+        <include>org.fusesource.hawtbuf:hawtbuf-proto</include>
         <include>jakarta.xml.bind:jakarta.xml.bind-api</include>
         <include>org.glassfish.jaxb:jaxb-runtime</include>
         <include>org.glassfish.jaxb:jaxb-core</include>


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information, visit: https://activemq.apache.org/contact


Reply via email to