GJL commented on a change in pull request #10256: [FLINK-14467][runtime] Let
MesosJobClusterEntrypoint use user code class loader
URL: https://github.com/apache/flink/pull/10256#discussion_r350653970
##########
File path:
flink-runtime/src/main/java/org/apache/flink/runtime/clusterframework/overlays/FlinkDistributionOverlay.java
##########
@@ -43,13 +43,14 @@
* possible to bypass this overlay and rely on the normal installation method.
*
* <p>The following files are copied to the container:
- * - flink/bin/
- * - flink/conf/
- * - flink/lib/
+ * - bin/
+ * - conf/
+ * - lib/
+ * - plugins/
*/
public class FlinkDistributionOverlay extends AbstractContainerOverlay {
- static final Path TARGET_ROOT = new Path("flink");
+ static final File TARGET_ROOT = new File(Path.CUR_DIR);
Review comment:
Why was the type changed from `Path` to `File`?
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services