You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-integration-ip/src/main/java/org/springframework/integration/ip/tcp/connection/CachingClientConnectionFactory.java
+3-2
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright 2002-2016 the original author or authors.
2
+
* Copyright 2002-2018 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
Copy file name to clipboardExpand all lines: spring-integration-ip/src/main/java/org/springframework/integration/ip/tcp/connection/TcpNetServerConnectionFactory.java
Copy file name to clipboardExpand all lines: spring-integration-jdbc/src/main/java/org/springframework/integration/jdbc/lock/DefaultLockRepository.java
+3-2
Original file line number
Diff line number
Diff line change
@@ -42,6 +42,7 @@
42
42
* @author Dave Syer
43
43
* @author Artem Bilan
44
44
* @author Glenn Renfro
45
+
* @author Gary Russell
45
46
*
46
47
* @since 4.3
47
48
*/
@@ -169,8 +170,8 @@ public boolean acquire(String lock) {
Copy file name to clipboardExpand all lines: spring-integration-jdbc/src/main/java/org/springframework/integration/jdbc/store/JdbcChannelMessageStore.java
+5-3
Original file line number
Diff line number
Diff line change
@@ -461,7 +461,7 @@ public MessageGroup getMessageGroup(Object groupId) {
461
461
*/
462
462
@ManagedAttribute
463
463
publicintgetMessageGroupCount() {
464
-
returnthis.jdbcTemplate.queryForObject(
464
+
returnthis.jdbcTemplate.queryForObject(// NOSONAR query never returns null
465
465
getQuery(Query.COUNT_GROUPS,
466
466
() -> "SELECT COUNT(DISTINCT GROUP_KEY) from %PREFIX%CHANNEL_MESSAGE where REGION = ?"),
Copy file name to clipboardExpand all lines: spring-integration-jdbc/src/main/java/org/springframework/integration/jdbc/store/channel/MessageRowMapper.java
+8-2
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright 2002-2017 the original author or authors.
2
+
* Copyright 2002-2018 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -47,7 +47,13 @@ public MessageRowMapper(WhiteListDeserializingConverter deserializer, LobHandler
0 commit comments