Skip to content

Commit

Permalink
Update default value in Java snippet
Browse files Browse the repository at this point in the history
`@Default.String("gs://my-bucket/input")` was used as the default value for both the input and the output custom option.
  • Loading branch information
BioGeek committed Mar 13, 2020
1 parent a338431 commit eda1e24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/src/documentation/programming-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit eda1e24

Please sign in to comment.