Skip to content

Commit

Permalink
CHanged Load bal IP from statis to prop file
Browse files Browse the repository at this point in the history
  • Loading branch information
sam0rai9 committed May 1, 2015
1 parent 0d318f2 commit 675764b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/edu/tomr/test/Admin.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@
import network.exception.NetworkException;
import network.requests.NWRequest;
import edu.tomr.protocol.UpdateConnMessage;
import edu.tomr.utils.ConfigParams;

public class Admin {

public static void main(String[] args) {

Connection conn=new Connection("10.139.61.182", NetworkConstants.LB_ADD_LISTEN_PORT);
Connection conn=new Connection(ConfigParams.getProperty("LB_IP"), NetworkConstants.LB_ADD_LISTEN_PORT);

NetworkUtilities utils = null;
try {
Expand Down

0 comments on commit 675764b

Please sign in to comment.