Return-Path: X-Original-To: apmail-streams-dev-archive@minotaur.apache.org Delivered-To: apmail-streams-dev-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 71B6B17D6A for ; Tue, 28 Oct 2014 17:09:59 +0000 (UTC) Received: (qmail 77528 invoked by uid 500); 28 Oct 2014 17:09:59 -0000 Delivered-To: apmail-streams-dev-archive@streams.apache.org Received: (qmail 77486 invoked by uid 500); 28 Oct 2014 17:09:59 -0000 Mailing-List: contact dev-help@streams.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@streams.incubator.apache.org Delivered-To: mailing list dev@streams.incubator.apache.org Received: (qmail 77475 invoked by uid 99); 28 Oct 2014 17:09:58 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Oct 2014 17:09:58 +0000 X-ASF-Spam-Status: No, hits=-2000.6 required=5.0 tests=ALL_TRUSTED,RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO mail.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 28 Oct 2014 17:09:57 +0000 Received: (qmail 77403 invoked by uid 99); 28 Oct 2014 17:09:37 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Oct 2014 17:09:37 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 912BC99646B; Tue, 28 Oct 2014 17:09:37 +0000 (UTC) From: robdouglas To: dev@streams.incubator.apache.org Reply-To: dev@streams.incubator.apache.org References: In-Reply-To: Subject: [GitHub] incubator-streams pull request: resolves Streams 187 Content-Type: text/plain Message-Id: <20141028170937.912BC99646B@tyr.zones.apache.org> Date: Tue, 28 Oct 2014 17:09:37 +0000 (UTC) X-Virus-Checked: Checked by ClamAV on apache.org Github user robdouglas commented on a diff in the pull request: https://github.com/apache/incubator-streams/pull/113#discussion_r19486372 --- Diff: streams-contrib/streams-amazon-aws/streams-persist-s3/src/main/java/org/apache/streams/s3/S3PersistWriter.java --- @@ -256,13 +258,15 @@ public void prepare(Object configurationObject) { AWSCredentials credentials = new BasicAWSCredentials(s3WriterConfiguration.getKey(), s3WriterConfiguration.getSecretKey()); ClientConfiguration clientConfig = new ClientConfiguration(); - clientConfig.setProtocol(Protocol.valueOf(s3WriterConfiguration.getProtocol().toUpperCase())); + clientConfig.setProtocol(Protocol.valueOf(s3WriterConfiguration.getProtocol().toString())); - // We want path style access + // We do not want path style access S3ClientOptions clientOptions = new S3ClientOptions(); --- End diff -- What was the motivation behind this change? --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastructure@apache.org or file a JIRA ticket with INFRA. ---