Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature 141 3.1.0 release prep #144

Merged
merged 3 commits into from
Oct 21, 2024
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
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
Loading