Changeset 1365
- Timestamp:
- 02/12/14 10:57:36 (11 years ago)
- Location:
- trunk/autoquest-htmlmonitor
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-htmlmonitor/bin/stop.sh
r1225 r1365 35 35 #Kill this autoquest-htmlmonitor-process 36 36 kill "$PID" 37 sleep 2 37 38 # Check if Process is no more 38 39 CHECK=$(ps ax | grep "$JAR_FILE" | grep -v ' grep ' | awk '{print $1}') -
trunk/autoquest-htmlmonitor/src/main/java/de/ugoe/cs/autoquest/htmlmonitor/ShutdownHook.java
r927 r1365 48 48 for (HtmlMonitorComponent component : components) { 49 49 if (component != null) { 50 component.stop(); 50 try { 51 component.stop(); 52 } 53 catch (Exception e) { 54 // ignore and go on 55 } 51 56 } 52 57 }
Note: See TracChangeset
for help on using the changeset viewer.