kennknowles commented on code in PR #34220: URL: https://github.com/apache/beam/pull/34220#discussion_r2052578551
########## sdks/java/core/src/main/java/org/apache/beam/sdk/Pipeline.java: ########## @@ -147,7 +147,15 @@ public PipelineExecutionException(Throwable cause) { /** Constructs a pipeline from default {@link PipelineOptions}. */ public static Pipeline create() { - Pipeline pipeline = new Pipeline(PipelineOptionsFactory.create()); + PipelineOptions options = PipelineOptionsFactory.create(); + if (options.getRunner() == null) { Review Comment: (we actually did a lot of work to remove the runner a while back :-) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@beam.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org