Skip to content

Commit

Permalink
Message directory refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
abhisheksarkar30 committed May 10, 2021
1 parent cda965d commit f9dd5ea
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,6 @@
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
/target/

.idea
*.iml
Binary file modified apps/activemq-tool-1.1.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions apps/conf/configure.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Queue name
queue1.name = EXTRA1
queue2.name = EXTRA1
#queue2.name = EXTRA1

#ACTIVE MQ
activemq.uri=tcp://localhost:61616?daemon=true
Expand All @@ -10,7 +10,7 @@ activemq.maxRedeliveries = -1
activemq.action = download

# Absolute path from where messages will be uploaded
message.upload.folder = E:\\opt\\chessMsgs\\TBP
message.folder = E:\\parent-dir\\msgs\\TBP

# Participant Id
message.participant.id = 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class Constants {
public static String QUEUE1_NAME = "queue1.name";
public static String QUEUE2_NAME = "queue2.name";
public static String ACTION_TYPE = "activemq.action";
public static String FOLDER_LOCATION = "message.upload.folder";
public static String FOLDER_LOCATION = "message.folder";
public static String PARTICIPANT_ID = "message.participant.id";
public static String CONNECTION_FACTORY = "singleConnectionFactory";
public static String MESSAGE_TYPE = "message.type";
Expand Down

0 comments on commit f9dd5ea

Please sign in to comment.