Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/).

## [Unreleased]
## [5.4.10] 2023-04-25

### Added
- On-premises only: added support for setting namespace on a per-request basis
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ project. The version changes with each release.
<dependency>
<groupId>com.oracle.nosql.sdk</groupId>
<artifactId>nosqldriver</artifactId>
<version>5.4.9</version>
<version>5.4.10</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion driver/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

<groupId>com.oracle.nosql.sdk</groupId>
<artifactId>nosqldriver</artifactId>
<version>5.4.9</version>
<version>5.4.10</version>
<packaging>jar</packaging>

<organization>
Expand Down
4 changes: 4 additions & 0 deletions driver/src/main/java/oracle/nosql/driver/ops/Request.java
Original file line number Diff line number Diff line change
Expand Up @@ -502,13 +502,15 @@ public boolean getIsRefresh() {
* table is currently over its configured throughput limit.
* Otherwise, allow DRL to delay request processing to match
* table limits (default).
* @param preferThrottling if throttling is preferred
*/
public void setPreferThrottling(boolean preferThrottling) {
this.preferThrottling = preferThrottling;
}

/**
* @hidden
* @return true if throttling is preferred
*/
public boolean getPreferThrottling() {
return preferThrottling;
Expand All @@ -520,13 +522,15 @@ public boolean getPreferThrottling() {
* Opt-in to using Distributed Rate Limiting (DRL). This setting
* will eventually be deprecated, as all requests will eventually
* use DRL unconditionally in the cloud.
* @param drlOptIn opt in to using DRL in the cloud
*/
public void setDRLOptIn(boolean drlOptIn) {
this.drlOptIn = drlOptIn;
}

/**
* @hidden
* @return true if opted in to using DRL in the cloud
*/
public boolean getDRLOptIn() {
return drlOptIn;
Expand Down
4 changes: 2 additions & 2 deletions examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>

<groupId>com.oracle.nosql.sdk</groupId>
<version>5.4.9</version>
<version>5.4.10</version>
<artifactId>nosql-java-sdk-examples</artifactId>
<name>Oracle NoSQL Database Java Examples</name>
<description>Java examples for Oracle NoSQL Database</description>
Expand All @@ -25,7 +25,7 @@
<dependency>
<groupId>com.oracle.nosql.sdk</groupId>
<artifactId>nosqldriver</artifactId>
<version>5.4.9</version>
<version>5.4.10</version>
</dependency>
</dependencies>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.oracle.nosql.sdk</groupId>
<artifactId>nosql-java-sdk</artifactId>
<version>5.4.9</version>
<version>5.4.10</version>
<packaging>pom</packaging>
<name>Oracle NoSQL SDK</name>
<description>
Expand Down