Updated Branches: refs/heads/trunk 401c0e202 -> cb3a3f6c0
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/cb3a3f6c Tree: http://git-wip-us.apache.org/repos/asf/whirr/tree/cb3a3f6c Diff: http://git-wip-us.apache.org/repos/asf/whirr/diff/cb3a3f6c Branch: refs/heads/trunk Commit: cb3a3f6c055f598c93342947427943203e1570ca Parents: 401c0e2 Author: Tom White <[email protected]> Authored: Thu Sep 20 21:59:22 2012 +0100 Committer: Tom White <[email protected]> Committed: Thu Sep 20 21:59:22 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/cb3a3f6c/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/cb3a3f6c/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(); }
