Skip to content

Commit

Permalink
Bump pom versions that were missed
Browse files Browse the repository at this point in the history
  • Loading branch information
jfleming-ic committed Feb 9, 2025
1 parent 94380b1 commit 68203d6
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion builder/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<parent>
<groupId>com.instaclustr</groupId>
<artifactId>cassandra-lucene-index-parent</artifactId>
<version>4.1.8-1.0.0</version>
<version>4.1.8-1.0.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<parent>
<groupId>com.instaclustr</groupId>
<artifactId>cassandra-lucene-index-parent</artifactId>
<version>4.1.8-1.0.0</version>
<version>4.1.8-1.0.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class IndexQueryHandler extends QueryHandler with Logging {

statement.authorize(state.getClientState);
statement.validate(state.getClientState);

options.prepare(statement.getBindVariables)
if (statement.getBindVariables.size != options.getValues.size) throw new InvalidRequestException("Invalid amount of bind variables")
if (!state.getClientState.isInternal) QueryProcessor.metrics.regularStatementsExecuted.inc()
Expand Down
4 changes: 2 additions & 2 deletions testsAT/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@
<parent>
<groupId>com.instaclustr</groupId>
<artifactId>cassandra-lucene-index-parent</artifactId>
<version>4.1.8-1.0.0</version>
<version>4.1.8-1.0.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>cassandra-lucene-index-tests</artifactId>
<version>4.1.8-1.0.0</version>
<version>4.1.8-1.0.1</version>

<packaging>jar</packaging>
<name>Cassandra Lucene Index acceptance tests</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public abstract class PluginTestFramework {

static class NestedSingleton implements BeforeAllCallback, ExtensionContext.Store.CloseableResource {

public static final String pluginCassandraVersion = System.getProperty("plugin.version", "4.1.8-1.0.0");
public static final String pluginCassandraVersion = System.getProperty("plugin.version", "4.1.8-1.0.1");
public static final String cassandraVersion = System.getProperty("cassandra.version", "4.1.8");

private static volatile boolean disconnected = false;
Expand Down

0 comments on commit 68203d6

Please sign in to comment.