Skip to content

Commit 3646d9b

Browse files
feat: Limitless plugin - change column name from dns_host to router_endpoint in router query (#1124)
1 parent ecab7e4 commit 3646d9b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
77
- Logic and a connection property to enable driver failover when network exceptions occur in the connect pipeline (PR #1099)[https://github.com/aws/aws-advanced-jdbc-wrapper/pull/1099]
88
- A new reworked and re-architected failover plugin (PR #1089)[https://github.com/aws/aws-advanced-jdbc-wrapper/pull/1089]
99
- Virtual Threading support (PR #1120)[https://github.com/aws/aws-advanced-jdbc-wrapper/pull/1120]
10+
- Limitless Connection Plugin. See [UsingTheLimitlessConnectionPlugin.md](https://github.com/aws/aws-advanced-jdbc-wrapper/blob/main/docs/using-the-jdbc-driver/using-plugins/UsingTheLimitlessConnectionPlugin.md).
1011

1112
## [2.3.9] - 2024-08-09
1213

wrapper/src/main/java/software/amazon/jdbc/plugin/limitless/LimitlessRouterMonitor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ private List<HostSpec> queryForLimitlessRouters(final Connection conn) throws SQ
227227

228228
try (final Statement stmt = conn.createStatement();
229229
final ResultSet resultSet = stmt.executeQuery(
230-
"select dns_host, load from aurora_limitless_router_endpoints()")) {
230+
"select router_endpoint, load from aurora_limitless_router_endpoints()")) {
231231
return mapResultSetToHostSpecList(resultSet);
232232
} catch (final SQLSyntaxErrorException e) {
233233
throw new SQLException(Messages.get("LimitlessRouterMonitor.invalidQuery"), e);

0 commit comments

Comments
 (0)