Skip to content

Commit e9c6a61

Browse files
committed
FIX(Opts) Missing --transacted option added
1 parent 521f6c3 commit e9c6a61

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cli-qpid-jms/src/main/java/com/redhat/mqe/jms/AacClientOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ public AacClientOptions() {
288288
new Option(CON_TCP_KEEP_ALIVE, "", "ENABLED", "false", "send tcp keep alive packets"),
289289
new Option(CON_TCP_NO_DELAY, "", "ENABLED", "true", "use tcp_nodelay (automatic concatenation of small packets into bigger frames)"),
290290

291-
new Option(TRANSACTED, "false"),
291+
new Option(TRANSACTED, "", "ENABLED", "false", "whether the session is transacted or not"),
292292
new Option(MSG_DURABLE, "false"),
293293
new Option(DURATION, "0"),
294294
new Option(FAILOVER_URL, ""),

jmslib/src/main/java/com/redhat/mqe/lib/ClientOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ public ClientOptions() {
309309
new Option(CON_TCP_KEEP_ALIVE, "", "ENABLED", "false", "send tcp keep alive packets"),
310310
new Option(CONN_TCP_NO_DELAY, "", "ENABLED", "true", "use tcp_nodelay (automatic concatenation of small packets into bigger frames)"),
311311

312-
new Option(TRANSACTED, "false"),
312+
new Option(TRANSACTED, "", "ENABLED", "false", "whether the session is transacted or not"),
313313
new Option(MSG_DURABLE, "false"),
314314
new Option(DURATION, "0"),
315315
new Option(FAILOVER_URL, ""),

0 commit comments

Comments
 (0)