You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by GitBox <gi...@apache.org> on 2021/10/07 07:54:41 UTC

[GitHub] [flink] Aitozi opened a new pull request #17424: [FLINK-24455][tests]FallbackAkkaRpcSystemLoader should check for mave…

Aitozi opened a new pull request #17424:
URL: https://github.com/apache/flink/pull/17424


   …n errors
   
   ## What is the purpose of the change
   
   Add check for in `FallbackAkkaRpcSystemLoader` when download dependencies failed.
   


-- 
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: issues-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] Aitozi commented on pull request #17424: [FLINK-24455][tests]FallbackAkkaRpcSystemLoader should check for mave…

Posted by GitBox <gi...@apache.org>.
Aitozi commented on pull request #17424:
URL: https://github.com/apache/flink/pull/17424#issuecomment-965937395


   @flinkbot run azure


-- 
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: issues-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] zentol commented on a change in pull request #17424: [FLINK-24455][tests]FallbackAkkaRpcSystemLoader should check for mave…

Posted by GitBox <gi...@apache.org>.
zentol commented on a change in pull request #17424:
URL: https://github.com/apache/flink/pull/17424#discussion_r746541431



##########
File path: flink-rpc/flink-rpc-akka-loader/src/main/java/org/apache/flink/runtime/rpc/akka/AkkaRpcSystemLoader.java
##########
@@ -42,6 +43,15 @@
  */
 public class AkkaRpcSystemLoader implements RpcSystemLoader {
 
+    /**
+     * The name of the akka dependency jar, which should be correspond to the artifact output copied
+     * to flink-runtime module.

Review comment:
       ```suggestion
        * The name of the akka dependency jar, which must match the jar that is bundled by the flink-rpc-akka-loader module.
   ```
   We no longer copy a jar to flink-runtime.

##########
File path: flink-rpc/flink-rpc-akka-loader/src/main/java/org/apache/flink/runtime/rpc/akka/AkkaRpcSystemLoader.java
##########
@@ -42,6 +43,15 @@
  */
 public class AkkaRpcSystemLoader implements RpcSystemLoader {
 
+    /**
+     * The name of the akka dependency jar, which should be correspond to the artifact output copied
+     * to flink-runtime module.
+     */
+    private static final String FLINK_RPC_AKKA_FAT_JAR = "flink-rpc-akka.jar";
+
+    protected static final String HINT_USAGE =

Review comment:
       ```suggestion
       static final String HINT_USAGE =
   ```
   Seems more appropriate.

##########
File path: flink-rpc/flink-rpc-akka-loader/src/test/java/org/apache/flink/runtime/rpc/akka/FallbackAkkaRpcSystemLoader.java
##########
@@ -67,7 +71,13 @@ public RpcSystem loadRpcSystem(Configuration config) {
                     akkaRpcModuleDirectory.resolve(Paths.get("target", "dependencies"));
 
             if (!Files.exists(akkaRpcModuleDependenciesDirectory)) {
-                downloadDependencies(akkaRpcModuleDirectory, akkaRpcModuleDependenciesDirectory);
+                int exitCode =
+                        downloadDependencies(
+                                akkaRpcModuleDirectory, akkaRpcModuleDependenciesDirectory);
+                if (exitCode != 0) {
+                    throw new RuntimeException(
+                            "Can not download dependencies, please see the output log for reason.");

Review comment:
       ```suggestion
                               "Could not download dependencies of flink-rpc-akka, please see the log output for details.");
   ```

##########
File path: flink-rpc/flink-rpc-akka-loader/src/test/java/org/apache/flink/runtime/rpc/akka/FallbackAkkaRpcSystemLoader.java
##########
@@ -67,7 +71,13 @@ public RpcSystem loadRpcSystem(Configuration config) {
                     akkaRpcModuleDirectory.resolve(Paths.get("target", "dependencies"));
 
             if (!Files.exists(akkaRpcModuleDependenciesDirectory)) {
-                downloadDependencies(akkaRpcModuleDirectory, akkaRpcModuleDependenciesDirectory);
+                int exitCode =
+                        downloadDependencies(
+                                akkaRpcModuleDirectory, akkaRpcModuleDependenciesDirectory);
+                if (exitCode != 0) {
+                    throw new RuntimeException(

Review comment:
       ```suggestion
                       throw new RpcLoaderException(
   ```




-- 
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: issues-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #17424: [FLINK-24455][tests]FallbackAkkaRpcSystemLoader should check for mave…

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #17424:
URL: https://github.com/apache/flink/pull/17424#issuecomment-938516882


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "87c852bd5bd07765ef46cd6896d0fb0ad3569f15",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=24842",
       "triggerID" : "87c852bd5bd07765ef46cd6896d0fb0ad3569f15",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 87c852bd5bd07765ef46cd6896d0fb0ad3569f15 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=24842) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run azure` re-run the last Azure build
   </details>


-- 
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: issues-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot commented on pull request #17424: [FLINK-24455][tests]FallbackAkkaRpcSystemLoader should check for mave…

Posted by GitBox <gi...@apache.org>.
flinkbot commented on pull request #17424:
URL: https://github.com/apache/flink/pull/17424#issuecomment-937547733


   Thanks a lot for your contribution to the Apache Flink project. I'm the @flinkbot. I help the community
   to review your pull request. We will use this comment to track the progress of the review.
   
   
   ## Automated Checks
   Last check on commit 87c852bd5bd07765ef46cd6896d0fb0ad3569f15 (Thu Oct 07 07:58:28 UTC 2021)
   
   **Warnings:**
    * No documentation files were touched! Remember to keep the Flink docs up to date!
   
   
   <sub>Mention the bot in a comment to re-run the automated checks.</sub>
   ## Review Progress
   
   * ❓ 1. The [description] looks good.
   * ❓ 2. There is [consensus] that the contribution should go into to Flink.
   * ❓ 3. Needs [attention] from.
   * ❓ 4. The change fits into the overall [architecture].
   * ❓ 5. Overall code [quality] is good.
   
   Please see the [Pull Request Review Guide](https://flink.apache.org/contributing/reviewing-prs.html) for a full explanation of the review process.<details>
    The Bot is tracking the review progress through labels. Labels are applied according to the order of the review items. For consensus, approval by a Flink committer of PMC member is required <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot approve description` to approve one or more aspects (aspects: `description`, `consensus`, `architecture` and `quality`)
    - `@flinkbot approve all` to approve all aspects
    - `@flinkbot approve-until architecture` to approve everything until `architecture`
    - `@flinkbot attention @username1 [@username2 ..]` to require somebody's attention
    - `@flinkbot disapprove architecture` to remove an approval you gave earlier
   </details>


-- 
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: issues-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #17424: [FLINK-24455][tests]FallbackAkkaRpcSystemLoader should check for mave…

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #17424:
URL: https://github.com/apache/flink/pull/17424#issuecomment-938516882


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "87c852bd5bd07765ef46cd6896d0fb0ad3569f15",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=24842",
       "triggerID" : "87c852bd5bd07765ef46cd6896d0fb0ad3569f15",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4bec22eb5e57d5b892a24b9253f0531df65bcf07",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=26293",
       "triggerID" : "4bec22eb5e57d5b892a24b9253f0531df65bcf07",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4bec22eb5e57d5b892a24b9253f0531df65bcf07",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=26293",
       "triggerID" : "965539548",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 4bec22eb5e57d5b892a24b9253f0531df65bcf07 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=26293) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run azure` re-run the last Azure build
   </details>


-- 
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: issues-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #17424: [FLINK-24455][tests]FallbackAkkaRpcSystemLoader should check for mave…

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #17424:
URL: https://github.com/apache/flink/pull/17424#issuecomment-938516882


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "87c852bd5bd07765ef46cd6896d0fb0ad3569f15",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=24842",
       "triggerID" : "87c852bd5bd07765ef46cd6896d0fb0ad3569f15",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4bec22eb5e57d5b892a24b9253f0531df65bcf07",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=26293",
       "triggerID" : "4bec22eb5e57d5b892a24b9253f0531df65bcf07",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4bec22eb5e57d5b892a24b9253f0531df65bcf07",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=26293",
       "triggerID" : "965539548",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 4bec22eb5e57d5b892a24b9253f0531df65bcf07 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=26293) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run azure` re-run the last Azure build
   </details>


-- 
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: issues-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot commented on pull request #17424: [FLINK-24455][tests]FallbackAkkaRpcSystemLoader should check for mave…

Posted by GitBox <gi...@apache.org>.
flinkbot commented on pull request #17424:
URL: https://github.com/apache/flink/pull/17424#issuecomment-937547733


   Thanks a lot for your contribution to the Apache Flink project. I'm the @flinkbot. I help the community
   to review your pull request. We will use this comment to track the progress of the review.
   
   
   ## Automated Checks
   Last check on commit 87c852bd5bd07765ef46cd6896d0fb0ad3569f15 (Thu Oct 07 07:58:28 UTC 2021)
   
   **Warnings:**
    * No documentation files were touched! Remember to keep the Flink docs up to date!
   
   
   <sub>Mention the bot in a comment to re-run the automated checks.</sub>
   ## Review Progress
   
   * ❓ 1. The [description] looks good.
   * ❓ 2. There is [consensus] that the contribution should go into to Flink.
   * ❓ 3. Needs [attention] from.
   * ❓ 4. The change fits into the overall [architecture].
   * ❓ 5. Overall code [quality] is good.
   
   Please see the [Pull Request Review Guide](https://flink.apache.org/contributing/reviewing-prs.html) for a full explanation of the review process.<details>
    The Bot is tracking the review progress through labels. Labels are applied according to the order of the review items. For consensus, approval by a Flink committer of PMC member is required <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot approve description` to approve one or more aspects (aspects: `description`, `consensus`, `architecture` and `quality`)
    - `@flinkbot approve all` to approve all aspects
    - `@flinkbot approve-until architecture` to approve everything until `architecture`
    - `@flinkbot attention @username1 [@username2 ..]` to require somebody's attention
    - `@flinkbot disapprove architecture` to remove an approval you gave earlier
   </details>


-- 
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: issues-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #17424: [FLINK-24455][tests]FallbackAkkaRpcSystemLoader should check for mave…

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #17424:
URL: https://github.com/apache/flink/pull/17424#issuecomment-938516882


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "87c852bd5bd07765ef46cd6896d0fb0ad3569f15",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=24842",
       "triggerID" : "87c852bd5bd07765ef46cd6896d0fb0ad3569f15",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4bec22eb5e57d5b892a24b9253f0531df65bcf07",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=26293",
       "triggerID" : "4bec22eb5e57d5b892a24b9253f0531df65bcf07",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4bec22eb5e57d5b892a24b9253f0531df65bcf07",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=26293",
       "triggerID" : "965539548",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "4bec22eb5e57d5b892a24b9253f0531df65bcf07",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=26293",
       "triggerID" : "965937395",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 4bec22eb5e57d5b892a24b9253f0531df65bcf07 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=26293) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run azure` re-run the last Azure build
   </details>


-- 
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: issues-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] Aitozi commented on pull request #17424: [FLINK-24455][tests]FallbackAkkaRpcSystemLoader should check for mave…

Posted by GitBox <gi...@apache.org>.
Aitozi commented on pull request #17424:
URL: https://github.com/apache/flink/pull/17424#issuecomment-965108120


   Thanks for help review, I have addressed the comments @zentol 


-- 
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: issues-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #17424: [FLINK-24455][tests]FallbackAkkaRpcSystemLoader should check for mave…

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #17424:
URL: https://github.com/apache/flink/pull/17424#issuecomment-938516882


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "87c852bd5bd07765ef46cd6896d0fb0ad3569f15",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=24842",
       "triggerID" : "87c852bd5bd07765ef46cd6896d0fb0ad3569f15",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 87c852bd5bd07765ef46cd6896d0fb0ad3569f15 Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=24842) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run azure` re-run the last Azure build
   </details>


-- 
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: issues-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #17424: [FLINK-24455][tests]FallbackAkkaRpcSystemLoader should check for mave…

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #17424:
URL: https://github.com/apache/flink/pull/17424#issuecomment-938516882


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "87c852bd5bd07765ef46cd6896d0fb0ad3569f15",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=24842",
       "triggerID" : "87c852bd5bd07765ef46cd6896d0fb0ad3569f15",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4bec22eb5e57d5b892a24b9253f0531df65bcf07",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "4bec22eb5e57d5b892a24b9253f0531df65bcf07",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 87c852bd5bd07765ef46cd6896d0fb0ad3569f15 Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=24842) 
   * 4bec22eb5e57d5b892a24b9253f0531df65bcf07 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run azure` re-run the last Azure build
   </details>


-- 
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: issues-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #17424: [FLINK-24455][tests]FallbackAkkaRpcSystemLoader should check for mave…

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #17424:
URL: https://github.com/apache/flink/pull/17424#issuecomment-938516882


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "87c852bd5bd07765ef46cd6896d0fb0ad3569f15",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=24842",
       "triggerID" : "87c852bd5bd07765ef46cd6896d0fb0ad3569f15",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4bec22eb5e57d5b892a24b9253f0531df65bcf07",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=26293",
       "triggerID" : "4bec22eb5e57d5b892a24b9253f0531df65bcf07",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 87c852bd5bd07765ef46cd6896d0fb0ad3569f15 Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=24842) 
   * 4bec22eb5e57d5b892a24b9253f0531df65bcf07 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=26293) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run azure` re-run the last Azure build
   </details>


-- 
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: issues-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #17424: [FLINK-24455][tests]FallbackAkkaRpcSystemLoader should check for mave…

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #17424:
URL: https://github.com/apache/flink/pull/17424#issuecomment-938516882


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "87c852bd5bd07765ef46cd6896d0fb0ad3569f15",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=24842",
       "triggerID" : "87c852bd5bd07765ef46cd6896d0fb0ad3569f15",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4bec22eb5e57d5b892a24b9253f0531df65bcf07",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=26293",
       "triggerID" : "4bec22eb5e57d5b892a24b9253f0531df65bcf07",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4bec22eb5e57d5b892a24b9253f0531df65bcf07",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=26293",
       "triggerID" : "965539548",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "4bec22eb5e57d5b892a24b9253f0531df65bcf07",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=26293",
       "triggerID" : "965937395",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 4bec22eb5e57d5b892a24b9253f0531df65bcf07 Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=26293) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run azure` re-run the last Azure build
   </details>


-- 
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: issues-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot commented on pull request #17424: [FLINK-24455][tests]FallbackAkkaRpcSystemLoader should check for mave…

Posted by GitBox <gi...@apache.org>.
flinkbot commented on pull request #17424:
URL: https://github.com/apache/flink/pull/17424#issuecomment-938516882


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "87c852bd5bd07765ef46cd6896d0fb0ad3569f15",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "87c852bd5bd07765ef46cd6896d0fb0ad3569f15",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 87c852bd5bd07765ef46cd6896d0fb0ad3569f15 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run azure` re-run the last Azure build
   </details>


-- 
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: issues-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #17424: [FLINK-24455][tests]FallbackAkkaRpcSystemLoader should check for mave…

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #17424:
URL: https://github.com/apache/flink/pull/17424#issuecomment-938516882


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "87c852bd5bd07765ef46cd6896d0fb0ad3569f15",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=24842",
       "triggerID" : "87c852bd5bd07765ef46cd6896d0fb0ad3569f15",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4bec22eb5e57d5b892a24b9253f0531df65bcf07",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=26293",
       "triggerID" : "4bec22eb5e57d5b892a24b9253f0531df65bcf07",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4bec22eb5e57d5b892a24b9253f0531df65bcf07",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=26293",
       "triggerID" : "965539548",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 4bec22eb5e57d5b892a24b9253f0531df65bcf07 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=26293) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run azure` re-run the last Azure build
   </details>


-- 
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: issues-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] Aitozi commented on pull request #17424: [FLINK-24455][tests]FallbackAkkaRpcSystemLoader should check for mave…

Posted by GitBox <gi...@apache.org>.
Aitozi commented on pull request #17424:
URL: https://github.com/apache/flink/pull/17424#issuecomment-960601289


   ping @zentol do you have time to help review this :)


-- 
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: issues-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #17424: [FLINK-24455][tests]FallbackAkkaRpcSystemLoader should check for mave…

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #17424:
URL: https://github.com/apache/flink/pull/17424#issuecomment-938516882


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "87c852bd5bd07765ef46cd6896d0fb0ad3569f15",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=24842",
       "triggerID" : "87c852bd5bd07765ef46cd6896d0fb0ad3569f15",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4bec22eb5e57d5b892a24b9253f0531df65bcf07",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=26293",
       "triggerID" : "4bec22eb5e57d5b892a24b9253f0531df65bcf07",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 4bec22eb5e57d5b892a24b9253f0531df65bcf07 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=26293) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run azure` re-run the last Azure build
   </details>


-- 
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: issues-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] zentol commented on pull request #17424: [FLINK-24455][tests]FallbackAkkaRpcSystemLoader should check for mave…

Posted by GitBox <gi...@apache.org>.
zentol commented on pull request #17424:
URL: https://github.com/apache/flink/pull/17424#issuecomment-965539548


   @flinkbot run azure


-- 
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: issues-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] zentol merged pull request #17424: [FLINK-24455][tests]FallbackAkkaRpcSystemLoader should check for mave…

Posted by GitBox <gi...@apache.org>.
zentol merged pull request #17424:
URL: https://github.com/apache/flink/pull/17424


   


-- 
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: issues-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #17424: [FLINK-24455][tests]FallbackAkkaRpcSystemLoader should check for mave…

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #17424:
URL: https://github.com/apache/flink/pull/17424#issuecomment-938516882


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "87c852bd5bd07765ef46cd6896d0fb0ad3569f15",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=24842",
       "triggerID" : "87c852bd5bd07765ef46cd6896d0fb0ad3569f15",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4bec22eb5e57d5b892a24b9253f0531df65bcf07",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=26293",
       "triggerID" : "4bec22eb5e57d5b892a24b9253f0531df65bcf07",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4bec22eb5e57d5b892a24b9253f0531df65bcf07",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=26293",
       "triggerID" : "965539548",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "4bec22eb5e57d5b892a24b9253f0531df65bcf07",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=26293",
       "triggerID" : "965937395",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 4bec22eb5e57d5b892a24b9253f0531df65bcf07 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=26293) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run azure` re-run the last Azure build
   </details>


-- 
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: issues-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org