From: erickson Date: Sat, 28 Jul 2007 17:38:26 +0000 (+0000) Subject: added shutdown call to cleanly disconnect from the opensrf network X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=fff1400eec4f5da47fddb8cae5e2fa2488d5a194;p=working%2FOpenSRF.git added shutdown call to cleanly disconnect from the opensrf network git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@1063 9efc2488-bf62-4759-914b-345cdb29e865 --- diff --git a/src/java/org/opensrf/test/TestClient.java b/src/java/org/opensrf/test/TestClient.java index 866ea0c..a1136cd 100644 --- a/src/java/org/opensrf/test/TestClient.java +++ b/src/java/org/opensrf/test/TestClient.java @@ -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(); } }