Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2670,7 +2670,7 @@ static void readTopologyInfo(ByteInputStream in,
Result result)
throws IOException {

int proxyTopoSeqNum = 1;
int proxyTopoSeqNum = -1;
int[] shardIds = null;
MapWalker walker = new MapWalker(in);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ public class TopologyInfo {
private int[] theShardIds;

public TopologyInfo(int seqNum, int[] shardIds) {
if (shardIds == null) {
throw new IllegalArgumentException("TopologyInfo shardIds must not be null");
}
theSeqNum = seqNum;
theShardIds = shardIds;
}
Expand Down