Skip to content
Snippets Groups Projects
Commit f2991a2f authored by Ryan Izard's avatar Ryan Izard
Browse files

Fix typo. We want to parse the *value* into a group/port ID, not the key...

parent c723c4f4
No related branches found
No related tags found
No related merge requests found
......@@ -335,10 +335,10 @@ public class GroupUtils {
bucketId = ParseUtils.parseHexOrDecInt(value);
break;
case BUCKET_WATCH_GROUP:
b.setWatchGroup(groupIdFromString(key));
b.setWatchGroup(groupIdFromString(value));
break;
case BUCKET_WATCH_PORT:
b.setWatchPort(MatchUtils.portFromString(key));
b.setWatchPort(MatchUtils.portFromString(value));
break;
case BUCKET_WEIGHT:
b.setWeight(ParseUtils.parseHexOrDecInt(value));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment