Skip to content
This repository has been archived by the owner on Jun 10, 2024. It is now read-only.

Commit

Permalink
Merge pull request #368 from cmgrote/main
Browse files Browse the repository at this point in the history
Version bumps
  • Loading branch information
cmgrote authored Jun 2, 2022
2 parents 0e7d993 + 85e99e5 commit c87e106
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ public synchronized void start() throws ConnectorCheckedException {
// Null for the timeout here means use the default (which is therefore configurable directly by
// the XTDB configurationProperties of the connector)
Transaction txn = tx.build();
log.info("Adding transaction functions: {}", txn.toVector());
log.info("Adding transaction functions: {}", txn);
TransactionInstant instant = xtdbAPI.submitTx(txn);
xtdbAPI.awaitTx(instant, null);

Expand Down Expand Up @@ -405,7 +405,7 @@ public Relationship getResultingRelationship(String docId,
*/
public TransactionInstant runTx(Transaction statements) {
if (log.isDebugEnabled())
log.debug("{} transacting with: {}", synchronousIndex ? SYNC : ASYNC, statements.toVector());
log.debug("{} transacting with: {}", synchronousIndex ? SYNC : ASYNC, statements);
TransactionInstant tx = xtdbAPI.submitTx(statements);
// Null for the timeout here means use the default (which is therefore configurable directly by the XTDB
// configurationProperties of the connector)
Expand Down
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,27 +68,27 @@
</developers>

<properties>
<open-metadata.version>3.9-SNAPSHOT</open-metadata.version>
<xtdb.version>1.20.0</xtdb.version>
<open-metadata.version>3.9</open-metadata.version>
<xtdb.version>1.21.0</xtdb.version>
<clojure.version>1.11.1</clojure.version>
<jackson.version>2.13.2.2</jackson.version>
<jackson.version>2.13.3</jackson.version>
<lucene.version>8.9.0</lucene.version>
<slf4j.version>1.7.36</slf4j.version>
<logback.version>1.2.11</logback.version>
<testng.version>7.5</testng.version>
<testng.version>7.6.0</testng.version>
<!-- Dependent libraries -->
<httpclient.version>4.5.13</httpclient.version>
<netty.version>4.1.76.Final</netty.version>
<netty.version>4.1.77.Final</netty.version>
<kafka.version>2.6.3</kafka.version>
<jacksondataformat.version>2.11.4</jacksondataformat.version>
<jacksondataformat.version>2.13.3</jacksondataformat.version>
<commonscodec.version>1.15</commonscodec.version>
<!-- Platform encoding -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- Build processing -->
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<spotbugs.version>4.6.0.0</spotbugs.version>
<spotbugs.version>4.7.0</spotbugs.version>
</properties>

<repositories>
Expand Down

0 comments on commit c87e106

Please sign in to comment.