You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by al...@apache.org on 2020/04/28 17:24:34 UTC

[beam] branch master updated: Display correct package in help message

This is an automated email from the ASF dual-hosted git repository.

altay pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
     new 5d93b4e  Display correct package in help message
     new 2261589  Merge pull request #11461 from tobiaslieber-cognitedata/patch-1
5d93b4e is described below

commit 5d93b4e498eaac4951029d12de07be28d5642412
Author: tobiaslieber-cognitedata <47...@users.noreply.github.com>
AuthorDate: Sun Apr 19 02:47:46 2020 +0200

    Display correct package in help message
---
 .../main/java/org/apache/beam/sdk/options/PipelineOptionsFactory.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sdks/java/core/src/main/java/org/apache/beam/sdk/options/PipelineOptionsFactory.java b/sdks/java/core/src/main/java/org/apache/beam/sdk/options/PipelineOptionsFactory.java
index bbdbf1e..50eefe5 100644
--- a/sdks/java/core/src/main/java/org/apache/beam/sdk/options/PipelineOptionsFactory.java
+++ b/sdks/java/core/src/main/java/org/apache/beam/sdk/options/PipelineOptionsFactory.java
@@ -564,7 +564,7 @@ public class PipelineOptionsFactory {
     out.format(
         "%nUse --help=<OptionsName> for detailed help. For example:%n"
             + "  --help=DataflowPipelineOptions <short names valid for registered options>%n"
-            + "  --help=org.apache.beam.sdk.options.DataflowPipelineOptions%n");
+            + "  --help=org.apache.beam.runners.dataflow.options.DataflowPipelineOptions%n");
   }
 
   /**