Skip to content

Commit

Permalink
feat: Limitless plugin - change column name from dns_host to router_e…
Browse files Browse the repository at this point in the history
…ndpoint in router query (aws#1124)
  • Loading branch information
aaronchung-bitquill authored Sep 24, 2024
1 parent ecab7e4 commit 3646d9b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- 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]
- A new reworked and re-architected failover plugin (PR #1089)[https://github.com/aws/aws-advanced-jdbc-wrapper/pull/1089]
- Virtual Threading support (PR #1120)[https://github.com/aws/aws-advanced-jdbc-wrapper/pull/1120]
- 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).

## [2.3.9] - 2024-08-09

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ private List<HostSpec> queryForLimitlessRouters(final Connection conn) throws SQ

try (final Statement stmt = conn.createStatement();
final ResultSet resultSet = stmt.executeQuery(
"select dns_host, load from aurora_limitless_router_endpoints()")) {
"select router_endpoint, load from aurora_limitless_router_endpoints()")) {
return mapResultSetToHostSpecList(resultSet);
} catch (final SQLSyntaxErrorException e) {
throw new SQLException(Messages.get("LimitlessRouterMonitor.invalidQuery"), e);
Expand Down

0 comments on commit 3646d9b

Please sign in to comment.