changes to machine ip for running files on calit2 machines
authoradash <adash>
Fri, 27 Feb 2009 01:45:12 +0000 (01:45 +0000)
committeradash <adash>
Fri, 27 Feb 2009 01:45:12 +0000 (01:45 +0000)
Robust/src/Benchmarks/Distributed/LookUpService/java/LookUpClient.java
Robust/src/Benchmarks/Distributed/LookUpService/jvm/LookUpClient.java

index 93f6e84d7f885e0f2571b52affd459509cb7ae77..54bd37299ea4720ec3ae328e664f8a05ab66e821 100644 (file)
@@ -34,7 +34,7 @@ public class LookUpClient {
     LookUpClient lc = new LookUpClient();
     LookUpClient.parseCmdLine(args, lc);
 
-    Socket sock = new Socket("dw-8.eecs.uci.edu",9001);
+    Socket sock = new Socket("dc-1.calit2.uci.edu",9001);
 
     for (int i = 0; i < lc.numtrans; i++) {
       Random rand = new Random(i);
index eb3d7921c2620c6267fa54565af4512db0f7fd3f..6165a236886c5400924e5fad491e78137edb0d95 100644 (file)
@@ -42,11 +42,11 @@ public class LookUpClient {
     InputStream in = null;
     OutputStream out = null;
     try {
-      sock = new Socket("dw-8.eecs.uci.edu",9001);
+      sock = new Socket("dc-1.calit2..uci.edu",9001);
       in = sock.getInputStream();
       out = sock.getOutputStream(); 
     } catch (UnknownHostException e) {
-      System.err.println("Don't know about host: dw-8.eecs.uci.edu");
+      System.err.println("Don't know about host: dc-1.calit2.uci.edu");
       System.exit(1);
     } catch (IOException e) {
       System.out.println("Read failed " + e);