This is an automated email from the ASF dual-hosted git repository. chesnay pushed a commit to branch release-1.14 in repository https://gitbox.apache.org/repos/asf/flink.git
commit 6cc9ad6938d250044d834f0ee7e050ee1d0bb502 Author: Chesnay Schepler <[email protected]> AuthorDate: Fri Sep 24 09:36:15 2021 +0200 [FLINK-24367][tests] Streamline instructions --- .../java/org/apache/flink/runtime/rpc/akka/AkkaRpcSystemLoader.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flink-rpc/flink-rpc-akka-loader/src/main/java/org/apache/flink/runtime/rpc/akka/AkkaRpcSystemLoader.java b/flink-rpc/flink-rpc-akka-loader/src/main/java/org/apache/flink/runtime/rpc/akka/AkkaRpcSystemLoader.java index 2fc1213..da0477b 100644 --- a/flink-rpc/flink-rpc-akka-loader/src/main/java/org/apache/flink/runtime/rpc/akka/AkkaRpcSystemLoader.java +++ b/flink-rpc/flink-rpc-akka-loader/src/main/java/org/apache/flink/runtime/rpc/akka/AkkaRpcSystemLoader.java @@ -58,7 +58,7 @@ public class AkkaRpcSystemLoader implements RpcSystemLoader { if (resourceStream == null) { throw new RuntimeException( "Akka RPC system could not be found. If this happened while running a test in the IDE," - + "run the process-resources phase on flink-rpc/flink-rpc-akka-loader via maven."); + + "run 'mvn package -pl flink-rpc/flink-rpc-akka,flink-rpc/flink-rpc-akka-loader' on the command-line."); } IOUtils.copyBytes(resourceStream, Files.newOutputStream(tempFile));
