Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/stage-jdk8' into CLIENT-3033-pro…
Browse files Browse the repository at this point in the history
…xy-client-cicd
  • Loading branch information
juliannguyen4 committed Sep 5, 2024
2 parents 648c31c + 9b9aee9 commit 23f8f8f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 9 additions & 1 deletion client/src/com/aerospike/client/ResultCode.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2012-2023 Aerospike, Inc.
* Copyright 2012-2024 Aerospike, Inc.
*
* Portions may be licensed to Aerospike, Inc. under one or more contributor
* license agreements WHICH ARE COMPATIBLE WITH THE APACHE LICENSE, VERSION 2.0.
Expand Down Expand Up @@ -233,6 +233,11 @@ public final class ResultCode {
*/
public static final int LOST_CONFLICT = 28;

/**
* Write can't complete until XDR finishes shipping.
*/
public static final int XDR_KEY_BUSY = 32;

/**
* There are no more records left for query.
*/
Expand Down Expand Up @@ -582,6 +587,9 @@ public static String getResultString(int resultCode) {
case LOST_CONFLICT:
return "Transaction failed due to conflict with XDR";

case XDR_KEY_BUSY:
return "Write can't complete until XDR finishes shipping";

case QUERY_END:
return "Query end";

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

<netty.version>4.1.111.Final</netty.version>
<netty.tcnative.version>2.0.62.Final</netty.tcnative.version>
<grpc.version>1.59.0</grpc.version>
<grpc.version>1.65.1</grpc.version>
<luaj-jse.version>3.0.1</luaj-jse.version>
<jbcrypt.version>0.4</jbcrypt.version>
<commons-cli.version>1.8.0</commons-cli.version>
Expand Down

0 comments on commit 23f8f8f

Please sign in to comment.