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 client-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
Expand Down
2 changes: 1 addition & 1 deletion client-it/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.oxia-db</groupId>
Expand Down
2 changes: 1 addition & 1 deletion client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
Expand Down
4 changes: 2 additions & 2 deletions client/src/main/java/io/oxia/client/batch/Operation.java
Original file line number Diff line number Diff line change
Expand Up @@ -197,8 +197,8 @@ DeleteRequest toProto() {

void complete(@NonNull DeleteResponse response) {
switch (response.getStatus()) {
case UNEXPECTED_VERSION_ID -> fail(
new UnexpectedVersionIdException(key, expectedVersionId.getAsLong()));
case UNEXPECTED_VERSION_ID ->
fail(new UnexpectedVersionIdException(key, expectedVersionId.getAsLong()));
case KEY_NOT_FOUND -> callback.complete(false);
case OK -> callback.complete(true);
default -> fail(new IllegalStateException("GRPC.Status: " + response.getStatus().name()));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ public void onNext(NotificationBatch batch) {
case KEY_CREATED -> new KeyCreated(key, notification.getVersionId());
case KEY_MODIFIED -> new KeyModified(key, notification.getVersionId());
case KEY_DELETED -> new KeyDeleted(key);
case KEY_RANGE_DELETED -> new Notification.KeyRangeDelete(
key, notification.getKeyRangeLast());
case KEY_RANGE_DELETED ->
new Notification.KeyRangeDelete(key, notification.getKeyRangeLast());
case UNRECOGNIZED -> null;
};

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

-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>io.github.oxia-db</groupId>
Expand Down Expand Up @@ -80,7 +80,7 @@

<assertj.version>3.24.1</assertj.version>
<awaitility.version>4.2.2</awaitility.version>
<lombok.version>1.18.38</lombok.version>
<lombok.version>1.18.42</lombok.version>
<slf4j.version>1.7.32</slf4j.version>
<junit.jupiter.version>5.11.3</junit.jupiter.version>
<mockito.junit.jupiter.version>5.14.2</mockito.junit.jupiter.version>
Expand All @@ -95,8 +95,8 @@
<maven.enforcer.plugin.version>3.5.0</maven.enforcer.plugin.version>
<maven.surefire.plugin.version>3.5.2</maven.surefire.plugin.version>
<maven.shade.plugin.version>3.6.0</maven.shade.plugin.version>
<spotbugs.plugin.version>4.9.3.0</spotbugs.plugin.version>
<spotless.plugin.version>2.39.0</spotless.plugin.version>
<spotbugs.plugin.version>4.9.6.0</spotbugs.plugin.version>
<spotless.plugin.version>3.0.0</spotless.plugin.version>
<byte-buddy.version>1.15.10</byte-buddy.version>
<commons-compress.version>1.26.0</commons-compress.version>
<commons-lang3.version>3.18.0</commons-lang3.version>
Expand Down
2 changes: 1 addition & 1 deletion testcontainers/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.oxia-db</groupId>
Expand Down