Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 5470E200BEC for ; Thu, 29 Dec 2016 19:03:07 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 53109160B2D; Thu, 29 Dec 2016 18:03:07 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 9CDCA160B23 for ; Thu, 29 Dec 2016 19:03:06 +0100 (CET) Received: (qmail 86116 invoked by uid 500); 29 Dec 2016 18:03:05 -0000 Mailing-List: contact commits-help@beam.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@beam.apache.org Delivered-To: mailing list commits@beam.apache.org Received: (qmail 86103 invoked by uid 99); 29 Dec 2016 18:03:05 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Dec 2016 18:03:05 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 93F90DFC70; Thu, 29 Dec 2016 18:03:05 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: dhalperi@apache.org To: commits@beam.apache.org Date: Thu, 29 Dec 2016 18:03:05 -0000 Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: [1/2] beam git commit: [BEAM-545] PipelineOptions: fix parameter name archived-at: Thu, 29 Dec 2016 18:03:07 -0000 Repository: beam Updated Branches: refs/heads/master eec077bee -> 6f4031adc [BEAM-545] PipelineOptions: fix parameter name Seems like a cut and paste error. R: @peihe Project: http://git-wip-us.apache.org/repos/asf/beam/repo Commit: http://git-wip-us.apache.org/repos/asf/beam/commit/42fffe20 Tree: http://git-wip-us.apache.org/repos/asf/beam/tree/42fffe20 Diff: http://git-wip-us.apache.org/repos/asf/beam/diff/42fffe20 Branch: refs/heads/master Commit: 42fffe203af84e2a672df8458f45f9ef69d56c3d Parents: eec077b Author: Daniel Halperin Authored: Fri Dec 16 23:47:56 2016 -0800 Committer: Dan Halperin Committed: Thu Dec 29 10:03:00 2016 -0800 ---------------------------------------------------------------------- .../src/main/java/org/apache/beam/sdk/options/PipelineOptions.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/beam/blob/42fffe20/sdks/java/core/src/main/java/org/apache/beam/sdk/options/PipelineOptions.java ---------------------------------------------------------------------- diff --git a/sdks/java/core/src/main/java/org/apache/beam/sdk/options/PipelineOptions.java b/sdks/java/core/src/main/java/org/apache/beam/sdk/options/PipelineOptions.java index ddb040d..47d5aa9 100644 --- a/sdks/java/core/src/main/java/org/apache/beam/sdk/options/PipelineOptions.java +++ b/sdks/java/core/src/main/java/org/apache/beam/sdk/options/PipelineOptions.java @@ -263,7 +263,7 @@ public interface PipelineOptions extends HasDisplayData { + "It defaults to ApplicationName-UserName-Date-RandomInteger") @Default.InstanceFactory(JobNameFactory.class) String getJobName(); - void setJobName(String numWorkers); + void setJobName(String jobName); /** * A {@link DefaultValueFactory} that obtains the class of the {@code DirectRunner} if it exists