Skip to content

Commit

Permalink
Fix sentinel setting.
Browse files Browse the repository at this point in the history
  • Loading branch information
jcoleman committed Sep 29, 2014
1 parent e7bd22a commit a3dd3e6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public void setSentinels(String sentinels) {
sentinels = "";
}

String[] sentinelArray = getSentinels().split(",");
String[] sentinelArray = sentinels.split(",");
this.sentinelSet = new HashSet<String>(Arrays.asList(sentinelArray));

this.sentinels = sentinels;
Expand Down

0 comments on commit a3dd3e6

Please sign in to comment.