Skip to content

Commit

Permalink
[AMQ-9531] Fix regression causing export command to fail
Browse files Browse the repository at this point in the history
(cherry picked from commit d9673c7)
  • Loading branch information
mattrpav authored and jbonofre committed Jul 14, 2024
1 parent 71e7cde commit 5762e32
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -263,15 +263,15 @@ private MessagePB.Bean createMessagePB(Message message, long messageKey) throws
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;
}

Expand Down
1 change: 1 addition & 0 deletions assembly/src/main/descriptors/common-bin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit 5762e32

Please sign in to comment.