Skip to content

Commit 255faf8

Browse files
committed
Upgraded dependency versions
- Made AsyncBatchExecutor constructor protected for internal use
1 parent c0f6ebd commit 255faf8

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

client/src/com/aerospike/client/async/AsyncBatchExecutor.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,10 @@ protected void onFailure(AerospikeException ae) {
305305
boolean done;
306306
boolean error;
307307

308-
private AsyncBatchExecutor(EventLoop eventLoop, Cluster cluster, boolean hasResultCode) {
308+
/**
309+
* For internal use only.
310+
*/
311+
protected AsyncBatchExecutor(EventLoop eventLoop, Cluster cluster, boolean hasResultCode) {
309312
this.eventLoop = eventLoop;
310313
this.cluster = cluster;
311314
this.hasResultCode = hasResultCode;

pom.xml

+5-5
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@
3939
<maven-surefire-plugin.version>2.18.1</maven-surefire-plugin.version>
4040
<maven-javadoc-plugin.version>3.2.0</maven-javadoc-plugin.version>
4141

42-
<netty.version>4.1.99.Final</netty.version>
43-
<netty.tcnative.version>2.0.61.Final</netty.tcnative.version>
44-
<grpc.version>1.56.1</grpc.version>
42+
<netty.version>4.1.100.Final</netty.version>
43+
<netty.tcnative.version>2.0.62.Final</netty.tcnative.version>
44+
<grpc.version>1.59.0</grpc.version>
4545
<luaj-jse.version>3.0.1</luaj-jse.version>
4646
<jbcrypt.version>0.4</jbcrypt.version>
4747
<commons-cli.version>1.5.0</commons-cli.version>
@@ -172,7 +172,7 @@
172172
</pluginManagement>
173173
</build>
174174

175-
<!-- Enable this section when new grpc stub changes need to be
175+
<!-- Enable this section when new grpc stub changes need to be
176176
tested in development.
177177
<repositories>
178178
<repository>
@@ -181,5 +181,5 @@
181181
</repository>
182182
</repositories>
183183
-->
184-
184+
185185
</project>

proxy/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<dependency>
2323
<groupId>com.aerospike</groupId>
2424
<artifactId>aerospike-proxy-stub</artifactId>
25-
<version>0.10.0</version>
25+
<version>1.0.1</version>
2626
</dependency>
2727

2828
<dependency>

0 commit comments

Comments
 (0)