Updated Branches: refs/heads/branch-0.7 f0b818f5b -> ff75f9cba
WHIRR-642. Whirr writes the AWS Secret key to the stdout. Contributed by Steve Loughran. Project: http://git-wip-us.apache.org/repos/asf/whirr/repo Commit: http://git-wip-us.apache.org/repos/asf/whirr/commit/ff75f9cb Tree: http://git-wip-us.apache.org/repos/asf/whirr/tree/ff75f9cb Diff: http://git-wip-us.apache.org/repos/asf/whirr/diff/ff75f9cb Branch: refs/heads/branch-0.7 Commit: ff75f9cba7ef8c809a2a7791d2a0a80639a1a54b Parents: f0b818f Author: Tom White <tomwh...@apache.org> Authored: Thu Sep 20 21:59:22 2012 +0100 Committer: Tom White <tomwh...@apache.org> Committed: Mon Sep 24 11:54:10 2012 +0100 ---------------------------------------------------------------------- CHANGES.txt | 3 +++ core/src/main/java/org/apache/whirr/Cluster.java | 1 - 2 files changed, 3 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/whirr/blob/ff75f9cb/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index e11fa54..05b6ea4 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -62,6 +62,9 @@ Release 0.7.2 WHIRR-601. Cassandra 1.0.8 download URL no longer valid (Andrew Bayer via asavu) + WHIRR-642. Whirr writes the AWS Secret key to the stdout. + (Steve Loughran via tomwhite) + Release 0.7.1 - 2012-02-23 IMPROVEMENTS http://git-wip-us.apache.org/repos/asf/whirr/blob/ff75f9cb/core/src/main/java/org/apache/whirr/Cluster.java ---------------------------------------------------------------------- diff --git a/core/src/main/java/org/apache/whirr/Cluster.java b/core/src/main/java/org/apache/whirr/Cluster.java index a321e44..93dc762 100644 --- a/core/src/main/java/org/apache/whirr/Cluster.java +++ b/core/src/main/java/org/apache/whirr/Cluster.java @@ -197,7 +197,6 @@ public class Cluster { public String toString() { return Objects.toStringHelper(this) .add("instances", instances) - .add("configuration", configuration) .toString(); }