Merge pull request #1461 from jclouds/dynect-wrongkeys

wrong values for SRVData keys in DynECT
This commit is contained in:
Adrian Cole 2013-03-25 15:23:02 -07:00
commit d8b227085c
1 changed files with 2 additions and 2 deletions

View File

@ -60,8 +60,8 @@ public class SRVData extends ForwardingMap<String, Object> {
this.delegate = ImmutableMap.<String, Object> builder()
.put("priority", priority)
.put("weight", weight)
.put("port", weight)
.put("target", weight)
.put("port", port)
.put("target", target)
.build();
}