Skip to content

Commit

Permalink
Merge pull request #144 from DataONEorg/feature-141-3.1.0-release-prep
Browse files Browse the repository at this point in the history
Feature 141 3.1.0 release prep
  • Loading branch information
artntek authored Oct 21, 2024
2 parents e42427a + 658cdc2 commit 9d13c2a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions helm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.0.2
version: 1.1.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "3.0.2"
appVersion: "3.1.0-SNAPSHOT"

# Chart dependencies
dependencies:
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.dataone</groupId>
<artifactId>dataone-index-worker</artifactId>
<version>3.0.2</version>
<version>3.1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>dataone-index-worker</name>
<url>http://maven.apache.org</url>
Expand Down
4 changes: 2 additions & 2 deletions src/test/java/org/dataone/cn/indexer/IndexWorkerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public void testInitExecutorService() throws Exception {
}
String propertyName = "index.thread.number";
String numberStr = "5";
int number = (new Integer(numberStr)).intValue();
int number = Integer.parseInt(numberStr);
// only test setting multiple threads if enough processors are available
if (finalThreads > number) {
Settings.getConfiguration().setProperty(propertyName, numberStr);
Expand All @@ -79,7 +79,7 @@ public void testInitExecutorService() throws Exception {
assertTrue(worker.multipleThread);
}
numberStr = "1";
number = (new Integer(numberStr)).intValue();
number = Integer.parseInt(numberStr);
Settings.getConfiguration().setProperty(propertyName, numberStr);
worker.initExecutorService();
System.out.println("worker.nThreads(1): " + worker.nThreads);
Expand Down

0 comments on commit 9d13c2a

Please sign in to comment.