This is an automated email from the ASF dual-hosted git repository.
lcwik 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 eda1e24 Update default value in Java snippet
new eb59dde Merge pull request #11127 from BioGeek/patch-1
eda1e24 is described below
commit eda1e248dac8a75b3fb824fe52d5206626a39f6e
Author: Jeroen Van Goey <[email protected]>
AuthorDate: Fri Mar 13 22:30:45 2020 +0100
Update default value in Java snippet
`@Default.String("gs://my-bucket/input")` was used as the default value for
both the input and the output custom option.
---
website/src/documentation/programming-guide.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/website/src/documentation/programming-guide.md
b/website/src/documentation/programming-guide.md
index 7db7171..1000865 100644
--- a/website/src/documentation/programming-guide.md
+++ b/website/src/documentation/programming-guide.md
@@ -227,7 +227,7 @@ public interface MyOptions extends PipelineOptions {
void setInput(String input);
@Description("Output for the pipeline")
- @Default.String("gs://my-bucket/input")
+ @Default.String("gs://my-bucket/output")
String getOutput();
void setOutput(String output);
}