Skip to content

Commit b5c0a4a

Browse files
fix: Updating version and change readme to refect right default values
- Updated version to 2.3.0 - Update readme to having right default values. Co-authored-by: Dale Lane <dale.lane@gmail.com> Signed-off-by: Joel Hanson <joelhanson025@gmail.com>
1 parent d924e77 commit b5c0a4a

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/ISSUE_TEMPLATE/BUG-REPORT.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ body:
5757
label: Version
5858
description: What version of our software are you running?
5959
options:
60-
- 2.2.1 (Default)
60+
- 2.3.0 (Default)
6161
- 1.3.5
6262
- older (<1.3.5)
6363
validations:

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -305,9 +305,9 @@ The configuration options for the Kafka Connect source connector for IBM MQ are
305305
| mq.message.mqmd.read | Whether to enable reading of all MQMD fields | boolean | false | |
306306
| mq.max.poll.blocked.time.ms | How long the connector will wait for the previous batch of messages to be delivered to Kafka before starting a new poll | integer | 2000 | It is important that this is less than the time defined for `task.shutdown.graceful.timeout.ms` as that is how long connect will wait for the task to perform lifecycle operations. |
307307
| mq.client.reconnect.options | Options governing MQ reconnection. | string | ASDEF | ASDEF, ANY, QMGR, DISABLED |
308-
| mq.jms.receive.timeout | The timeout in milliseconds for receiving messages from JMS Consumer. | long | 2000L | 1 or greater |
309-
| mq.jms.reconnect.delay.min.ms | The minimum delay in milliseconds for reconnect attempts. | long | 64L | 1 or greater |
310-
| mq.jms.reconnect.delay.max.ms | The maximum delay in milliseconds for reconnect attempts. | long | 8192L | 1 or greater |
308+
| mq.jms.receive.timeout | How long the connector should wait (in milliseconds) for a message to arrive if no message is available immediately | long | 2000 | 1 or greater |
309+
| mq.jms.reconnect.delay.min.ms | The minimum delay in milliseconds for reconnect attempts. | long | 64 | 1 or greater |
310+
| mq.jms.reconnect.delay.max.ms | The maximum delay in milliseconds for reconnect attempts. | long | 8192 | 1 or greater |
311311

312312
### Using a CCDT file
313313

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<groupId>com.ibm.eventstreams.connect</groupId>
2121
<artifactId>kafka-connect-mq-source</artifactId>
2222
<packaging>jar</packaging>
23-
<version>2.2.1</version>
23+
<version>2.3.0</version>
2424
<name>kafka-connect-mq-source</name>
2525
<organization>
2626
<name>IBM Corporation</name>

src/main/java/com/ibm/eventstreams/connect/mqsource/MQSourceConnector.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ public class MQSourceConnector extends SourceConnector {
190190
CONFIG_VALUE_MQ_CLIENT_RECONNECT_OPTION_DISABLED.toLowerCase(Locale.ENGLISH)
191191
};
192192

193-
public static String version = "2.2.1";
193+
public static String version = "2.3.0";
194194

195195
private Map<String, String> configProps;
196196

0 commit comments

Comments
 (0)