Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Commit

Permalink
Merge pull request #87 from tparker-usgs/master
Browse files Browse the repository at this point in the history
finish 1.3.5 release
  • Loading branch information
tparker-usgs authored Jul 25, 2019
2 parents e6ae12a + fb76cb3 commit 0809a56
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 8 deletions.
Empty file modified bin/WWS.sh
100644 → 100755
Empty file.
Empty file modified bin/WinstonTools.sh
100644 → 100755
Empty file.
Empty file modified bin/WinstonVersion.sh
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>gov.usgs.volcanoes</groupId>
<artifactId>winston</artifactId>
<version>1.3.5-SNAPSHOT</version>
<version>1.3.5</version>
<packaging>jar</packaging>

<name>Winston</name>
Expand Down
16 changes: 9 additions & 7 deletions src/main/java/gov/usgs/volcanoes/winston/in/ew/ImportEW.java
Original file line number Diff line number Diff line change
Expand Up @@ -936,14 +936,16 @@ public static void consoleInputManager(final ImportEW im) {
if (s != null) {
s = s.toLowerCase().trim();
if (s.equals("q")) {
acceptCommands = false;
im.quit();
try {
im.join();
} catch (final Throwable e) {
LOGGER.error("Failed to quit cleanly. {}");
} finally {
im.printStatus();
}
// exit Importer quickly, don't wait to flush any pending writes
// try {
// im.join();
// } catch (final Throwable e) {
// LOGGER.error("Failed to quit cleanly. {}");
// } finally {
// im.printStatus();
// }
System.exit(0);
} else if (s.equals("s")) {
im.printStatus();
Expand Down
1 change: 1 addition & 0 deletions src/main/java/gov/usgs/volcanoes/winston/server/WWS.java
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ private static void attendConsole(WWS wws) {
WWS.printKeys();
}
}
System.exit(0);
}

private static void printKeys() {
Expand Down

0 comments on commit 0809a56

Please sign in to comment.