Skip to content

Commit

Permalink
Potentially bad commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanpullano committed Apr 8, 2012
1 parent aba74ef commit 141b735
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpc/RpcServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public void run() {
DatagramPacket recvPkt = new DatagramPacket(inBuf, inBuf.length);
rpcSocket.receive(recvPkt);
IPP recvIPP = new IPP(recvPkt.getAddress(), recvPkt.getPort());
SimpleDB.getInstance().putLocalMember(recvIPP);
//SimpleDB.getInstance().putLocalMember(recvIPP);
InetAddress returnAddr = recvPkt.getAddress();
int returnPort = recvPkt.getPort();
RpcMessageCall recvMessage = (RpcMessageCall) RpcMessage.readByteStream(inBuf);
Expand Down

0 comments on commit 141b735

Please sign in to comment.