Skip to content

Commit

Permalink
2.0.2 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
essiembre committed Jul 9, 2023
1 parent c2a4c0e commit b8ce848
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
5 changes: 3 additions & 2 deletions CHANGES.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@
</properties>
<body>

<release version="2.0.2-SNAPSHOT" date="2023-??-??" description="Maintenance release">
<release version="2.0.2" date="2023-07-09" description="Maintenance release">
<action dev="essiembre" type="add">
New "deferredShutdownDuration" collector configuration option to delay
the collector shutdown when it's done executing.
</action>
<action dev="essiembre" type="update">
Maven dependency updates: norconex-commons-maven-parent 1.0.2.
Maven dependency updates: norconex-commons-maven-parent 1.0.2,
H2 2.2.220, JSoup 1.15.3.
</action>
<action dev="essiembre" type="update">
JMX crawler MBeans are now unregistered as the last thing before
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@
<parent>
<groupId>com.norconex.commons</groupId>
<artifactId>norconex-commons-maven-parent</artifactId>
<version>1.0.2-SNAPSHOT</version>
<version>1.0.2</version>
</parent>
<groupId>com.norconex.collectors</groupId>
<artifactId>norconex-collector-core</artifactId>
<version>2.0.2-SNAPSHOT</version>
<version>2.0.2</version>
<name>Norconex Collector Core</name>

<properties>
<commons-compress.version>1.21</commons-compress.version>
<cxf.version>3.4.5</cxf.version>
<h2.version>2.1.210</h2.version>
<h2.version>2.2.220</h2.version>
<hikaricp.version>4.0.3</hikaricp.version>
<jdom2.version>2.0.6.1</jdom2.version>
<jsoup.version>1.14.3</jsoup.version>
<jsoup.version>1.15.3</jsoup.version>
<mongodb.version>4.3.2</mongodb.version>
</properties>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ public synchronized void close() {
LOG.info("Closing data store engine...");
if (mvstore != null && !mvstore.isClosed()) {
LOG.info("Compacting data store...");
mvstore.compactMoveChunks();
mvstore.compactFile(5 * 1000);
mvstore.close();
}
mvstore = null;
Expand Down

0 comments on commit b8ce848

Please sign in to comment.