You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jclouds.apache.org by na...@apache.org on 2016/08/10 22:09:53 UTC

[09/12] jclouds git commit: GCE: fix tags order

GCE: fix tags order


Project: http://git-wip-us.apache.org/repos/asf/jclouds/repo
Commit: http://git-wip-us.apache.org/repos/asf/jclouds/commit/93028b75
Tree: http://git-wip-us.apache.org/repos/asf/jclouds/tree/93028b75
Diff: http://git-wip-us.apache.org/repos/asf/jclouds/diff/93028b75

Branch: refs/heads/gsoc2016-ivan
Commit: 93028b7529fe4671d1839cf138cb63c196d0f5eb
Parents: deeedd5
Author: Andrea Turli <an...@gmail.com>
Authored: Tue Aug 2 19:50:12 2016 +0200
Committer: Andrea Turli <an...@gmail.com>
Committed: Tue Aug 2 20:12:45 2016 +0200

----------------------------------------------------------------------
 .../strategy/CreateNodesWithGroupEncodedIntoNameThenAddToSet.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jclouds/blob/93028b75/providers/google-compute-engine/src/main/java/org/jclouds/googlecomputeengine/compute/strategy/CreateNodesWithGroupEncodedIntoNameThenAddToSet.java
----------------------------------------------------------------------
diff --git a/providers/google-compute-engine/src/main/java/org/jclouds/googlecomputeengine/compute/strategy/CreateNodesWithGroupEncodedIntoNameThenAddToSet.java b/providers/google-compute-engine/src/main/java/org/jclouds/googlecomputeengine/compute/strategy/CreateNodesWithGroupEncodedIntoNameThenAddToSet.java
index 1731cec..5e6cda7 100644
--- a/providers/google-compute-engine/src/main/java/org/jclouds/googlecomputeengine/compute/strategy/CreateNodesWithGroupEncodedIntoNameThenAddToSet.java
+++ b/providers/google-compute-engine/src/main/java/org/jclouds/googlecomputeengine/compute/strategy/CreateNodesWithGroupEncodedIntoNameThenAddToSet.java
@@ -164,7 +164,7 @@ public final class CreateNodesWithGroupEncodedIntoNameThenAddToSet extends
    private void getOrCreateFirewalls(GoogleComputeEngineTemplateOptions templateOptions, Network network,
          FirewallTagNamingConvention naming) {
 
-      Set<String> tags = Sets.newHashSet(templateOptions.getTags());
+      Set<String> tags = Sets.newLinkedHashSet(templateOptions.getTags());
 
       FirewallApi firewallApi = api.firewalls();