Updated Branches: refs/heads/branch-0.8 cfc17cf5f -> d6c0d9e1d
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/d6c0d9e1 Tree: http://git-wip-us.apache.org/repos/asf/whirr/tree/d6c0d9e1 Diff: http://git-wip-us.apache.org/repos/asf/whirr/diff/d6c0d9e1 Branch: refs/heads/branch-0.8 Commit: d6c0d9e1d0e11701abb34836c1527815a18cfee6 Parents: cfc17cf Author: Tom White <tomwh...@apache.org> Authored: Thu Sep 20 21:59:22 2012 +0100 Committer: Tom White <tomwh...@apache.org> Committed: Thu Sep 20 21:59:43 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/d6c0d9e1/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index c3a0183..0a91466 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -31,6 +31,9 @@ Release 0.8.1 (unreleased changes) WHIRR-646. Integration tests should have failsafe timeouts. (abayer via tomwhite) + WHIRR-642. Whirr writes the AWS Secret key to the stdout. + (Steve Loughran via tomwhite) + Release 0.8.0 - 2012-08-17 NEW FEATURES http://git-wip-us.apache.org/repos/asf/whirr/blob/d6c0d9e1/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 7495f60..237ed47 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(); }