Skip to content

Commit

Permalink
Upgraded dependency versions (#296)
Browse files Browse the repository at this point in the history
- Made AsyncBatchExecutor constructor protected for internal use
  • Loading branch information
ashishshinde authored Nov 7, 2023
1 parent 22b9246 commit a90720f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,10 @@ protected void onFailure(AerospikeException ae) {
boolean done;
boolean error;

private AsyncBatchExecutor(EventLoop eventLoop, Cluster cluster, boolean hasResultCode) {
/**
* For internal use only.
*/
protected AsyncBatchExecutor(EventLoop eventLoop, Cluster cluster, boolean hasResultCode) {
this.eventLoop = eventLoop;
this.cluster = cluster;
this.hasResultCode = hasResultCode;
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@
<maven-surefire-plugin.version>2.18.1</maven-surefire-plugin.version>
<maven-javadoc-plugin.version>3.2.0</maven-javadoc-plugin.version>

<netty.version>4.1.99.Final</netty.version>
<netty.tcnative.version>2.0.61.Final</netty.tcnative.version>
<grpc.version>1.56.1</grpc.version>
<netty.version>4.1.100.Final</netty.version>
<netty.tcnative.version>2.0.62.Final</netty.tcnative.version>
<grpc.version>1.59.0</grpc.version>
<luaj-jse.version>3.0.1</luaj-jse.version>
<jbcrypt.version>0.4</jbcrypt.version>
<commons-cli.version>1.5.0</commons-cli.version>
Expand Down Expand Up @@ -172,7 +172,7 @@
</pluginManagement>
</build>

<!-- Enable this section when new grpc stub changes need to be
<!-- Enable this section when new grpc stub changes need to be
tested in development.
<repositories>
<repository>
Expand All @@ -181,5 +181,5 @@
</repository>
</repositories>
-->

</project>
2 changes: 1 addition & 1 deletion proxy/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<dependency>
<groupId>com.aerospike</groupId>
<artifactId>aerospike-proxy-stub</artifactId>
<version>0.10.0</version>
<version>1.0.1</version>
</dependency>

<dependency>
Expand Down

0 comments on commit a90720f

Please sign in to comment.