added shutdown call to cleanly disconnect from the opensrf network
authorerickson <erickson@9efc2488-bf62-4759-914b-345cdb29e865>
Sat, 28 Jul 2007 17:38:26 +0000 (17:38 +0000)
committererickson <erickson@9efc2488-bf62-4759-914b-345cdb29e865>
Sat, 28 Jul 2007 17:38:26 +0000 (17:38 +0000)
git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@1063 9efc2488-bf62-4759-914b-345cdb29e865

src/java/org/opensrf/test/TestClient.java

index 866ea0c..a1136cd 100644 (file)
@@ -7,7 +7,6 @@ import java.util.List;
 import java.util.ArrayList;
 import java.io.PrintStream;
 
-
 public class TestClient {
 
     public static void main(String args[]) throws Exception {
@@ -72,6 +71,8 @@ public class TestClient {
         
         /** How long did the request take? */
         out.println("Request round trip took: " + (new Date().getTime() - start) + " ms.");
+
+        Sys.shutdown();
     }
 }