You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by al...@apache.org on 2016/09/23 20:44:15 UTC

[1/2] brooklyn-server git commit: Fix SharedLocationSecurityGroupCustomizer.udpPortRanges

Repository: brooklyn-server
Updated Branches:
  refs/heads/master 21a36649b -> 0bc231224


Fix SharedLocationSecurityGroupCustomizer.udpPortRanges

Previously it was ImmutableList so could not be used from YAML; changed
to a normal List.

Project: http://git-wip-us.apache.org/repos/asf/brooklyn-server/repo
Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-server/commit/f2a80620
Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-server/tree/f2a80620
Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-server/diff/f2a80620

Branch: refs/heads/master
Commit: f2a80620696f8034cd9c012596b6b1a71a71b50f
Parents: 21a3664
Author: Aled Sage <al...@gmail.com>
Authored: Fri Sep 23 18:19:15 2016 +0100
Committer: Aled Sage <al...@gmail.com>
Committed: Fri Sep 23 18:20:57 2016 +0100

----------------------------------------------------------------------
 .../jclouds/networking/SharedLocationSecurityGroupCustomizer.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/f2a80620/locations/jclouds/src/main/java/org/apache/brooklyn/location/jclouds/networking/SharedLocationSecurityGroupCustomizer.java
----------------------------------------------------------------------
diff --git a/locations/jclouds/src/main/java/org/apache/brooklyn/location/jclouds/networking/SharedLocationSecurityGroupCustomizer.java b/locations/jclouds/src/main/java/org/apache/brooklyn/location/jclouds/networking/SharedLocationSecurityGroupCustomizer.java
index e393bae..edac91d 100644
--- a/locations/jclouds/src/main/java/org/apache/brooklyn/location/jclouds/networking/SharedLocationSecurityGroupCustomizer.java
+++ b/locations/jclouds/src/main/java/org/apache/brooklyn/location/jclouds/networking/SharedLocationSecurityGroupCustomizer.java
@@ -93,7 +93,7 @@ public class SharedLocationSecurityGroupCustomizer extends BasicJcloudsLocationC
         this.tcpPortRanges = Networking.portRulesToRanges(tcpPortRanges);
     }
 
-    public void setUdpPortRanges(ImmutableList<String> udpPortRanges) {
+    public void setUdpPortRanges(List<String> udpPortRanges) {
         this.udpPortRanges = Networking.portRulesToRanges(udpPortRanges);
     }
 


[2/2] brooklyn-server git commit: This closes #348

Posted by al...@apache.org.
This closes #348


Project: http://git-wip-us.apache.org/repos/asf/brooklyn-server/repo
Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-server/commit/0bc23122
Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-server/tree/0bc23122
Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-server/diff/0bc23122

Branch: refs/heads/master
Commit: 0bc231224a64debb7e2dd18b51597eda09b0f3bc
Parents: 21a3664 f2a8062
Author: Aled Sage <al...@gmail.com>
Authored: Fri Sep 23 21:44:06 2016 +0100
Committer: Aled Sage <al...@gmail.com>
Committed: Fri Sep 23 21:44:06 2016 +0100

----------------------------------------------------------------------
 .../jclouds/networking/SharedLocationSecurityGroupCustomizer.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------