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/21 04:38:08 UTC

[GitHub] [flink] TanYuxin-tyx opened a new pull request #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

TanYuxin-tyx opened a new pull request #17532:
URL: https://github.com/apache/flink/pull/17532


   
   
   <!--
   *Thank you very much for contributing to Apache Flink - we are happy that you want to help us improve Flink. To help the community review your contribution in the best possible way, please go through the checklist below, which will get the contribution into a shape in which it can be best reviewed.*
   
   *Please understand that we do not do this to make contributions to Flink a hassle. In order to uphold a high standard of quality for code contributions, while at the same time managing a large number of contributions, we need contributors to prepare the contributions well, and give reviewers enough contextual information for the review. Please also understand that contributions that do not follow this guide will take longer to review and thus typically be picked up with lower priority by the community.*
   
   ## Contribution Checklist
   
     - Make sure that the pull request corresponds to a [JIRA issue](https://issues.apache.org/jira/projects/FLINK/issues). Exceptions are made for typos in JavaDoc or documentation files, which need no JIRA issue.
     
     - Name the pull request in the form "[FLINK-XXXX] [component] Title of the pull request", where *FLINK-XXXX* should be replaced by the actual issue number. Skip *component* if you are unsure about which is the best component.
     Typo fixes that have no associated JIRA issue should be named following this pattern: `[hotfix] [docs] Fix typo in event time introduction` or `[hotfix] [javadocs] Expand JavaDoc for PuncuatedWatermarkGenerator`.
   
     - Fill out the template below to describe the changes contributed by the pull request. That will give reviewers the context they need to do the review.
     
     - Make sure that the change passes the automated tests, i.e., `mvn clean verify` passes. You can set up Azure Pipelines CI to do that following [this guide](https://cwiki.apache.org/confluence/display/FLINK/Azure+Pipelines#AzurePipelines-Tutorial:SettingupAzurePipelinesforaforkoftheFlinkrepository).
   
     - Each pull request should address only one issue, not mix up code from multiple issues.
     
     - Each commit in the pull request has a meaningful commit message (including the JIRA id)
   
     - Once all items of the checklist are addressed, remove the above text and this checklist, leaving only the filled out template below.
   
   
   **(The sections below can be removed for hotfixes of typos)**
   -->
   
   ## What is the purpose of the change
   
   Fix port conflict in `ServerTransportErrorHandlingTest#testRemoteClose`. In the test case, a `BindException`  may be thrown when init Netty server. When initializing Netty server, `NetUtils.getAvailablePort()` is called in `createConfig()`. After obtaining the available port, the port may be used by other processes, which may lead to `BindException`. To resolve the issue, a retry is added when calling `initServerAndClient` method.
   
   ## Brief change log
     - *Add the number of retries when initializing the Netty server in the test case*
   
   ## Verifying this change
     - *Initializing  the Netty server successfully in the test case*
   
   ## Does this pull request potentially affect one of the following parts:
   
     - Dependencies (does it add or upgrade a dependency): (yes / **no**)
     - The public API, i.e., is any changed class annotated with `@Public(Evolving)`: (yes / **no**)
     - The serializers: (yes / **no** / don't know)
     - The runtime per-record code paths (performance sensitive): (yes / **no** / don't know)
     - Anything that affects deployment or recovery: JobManager (and its components), Checkpointing, Kubernetes/Yarn, ZooKeeper: (yes / **no** / don't know)
     - The S3 file system connector: (yes / **no** / don't know)
   
   ## Documentation
   
     - Does this pull request introduce a new feature? (yes / **no**)
     - If yes, how is the feature documented? (**not applicable** / docs / JavaDocs / not documented)
   


-- 
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] TanYuxin-tyx commented on a change in pull request #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

Posted by GitBox <gi...@apache.org>.
TanYuxin-tyx commented on a change in pull request #17532:
URL: https://github.com/apache/flink/pull/17532#discussion_r740326336



##########
File path: flink-runtime/src/test/java/org/apache/flink/runtime/io/network/netty/ServerTransportErrorHandlingTest.java
##########
@@ -101,7 +104,22 @@ public void channelRead(ChannelHandlerContext ctx, Object msg)
         NettyTestUtil.NettyServerAndClient serverAndClient = null;
 
         try {
-            serverAndClient = initServerAndClient(protocol, createConfig());
+            for (int retry = 0; retry < NETTY_INIT_MAX_RETRY_TIMES; retry++) {
+                try {
+                    serverAndClient = initServerAndClient(protocol, createConfig());
+                    break;
+                } catch (Exception e) {
+                    if (retry >= NETTY_INIT_MAX_RETRY_TIMES - 1) {
+                        throw e;
+                    }
+                    if (e instanceof BindException

Review comment:
       Thanks. I will make the exception inevitable by init the server using an occupied port. And I will print the detailed stack of the exception by triggering it in the CI test.

##########
File path: flink-runtime/src/test/java/org/apache/flink/runtime/io/network/netty/ServerTransportErrorHandlingTest.java
##########
@@ -101,7 +104,22 @@ public void channelRead(ChannelHandlerContext ctx, Object msg)
         NettyTestUtil.NettyServerAndClient serverAndClient = null;
 
         try {
-            serverAndClient = initServerAndClient(protocol, createConfig());
+            for (int retry = 0; retry < NETTY_INIT_MAX_RETRY_TIMES; retry++) {
+                try {
+                    serverAndClient = initServerAndClient(protocol, createConfig());
+                    break;
+                } catch (Exception e) {
+                    if (retry >= NETTY_INIT_MAX_RETRY_TIMES - 1) {
+                        throw e;
+                    }
+                    if (e instanceof BindException

Review comment:
       Thanks. I'll initialize the server by using an occupied port to make the exception inevitable. And I will print the detailed stack of the exception by triggering it in the CI test.




-- 
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] wsry commented on pull request #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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


   I will help to merge this PR after all tests pass.


-- 
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 #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25296",
       "triggerID" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25311",
       "triggerID" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "triggerType" : "PUSH"
     }, {
       "hash" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * dd8d7b161f71cef2099c746f4e54cb62d4b881dd Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25296) 
   * d3f49cc4044ce90216b922b3f66023d87bdf9458 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25311) 
   * 0a9a446924d3099463a7a3528cc317e9e960bce5 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 #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25296",
       "triggerID" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * dd8d7b161f71cef2099c746f4e54cb62d4b881dd Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25296) 
   * d3f49cc4044ce90216b922b3f66023d87bdf9458 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 commented on pull request #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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


   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 dd8d7b161f71cef2099c746f4e54cb62d4b881dd (Thu Oct 21 04:40:31 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 #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25296",
       "triggerID" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25311",
       "triggerID" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "triggerType" : "PUSH"
     }, {
       "hash" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25317",
       "triggerID" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "956355809",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 0a9a446924d3099463a7a3528cc317e9e960bce5 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25317) 
   * 6bf9e572bd13b954cad07b009c65dd4b72cc18ee Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744) 
   
   <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 #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25296",
       "triggerID" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25311",
       "triggerID" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * dd8d7b161f71cef2099c746f4e54cb62d4b881dd Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25296) 
   * d3f49cc4044ce90216b922b3f66023d87bdf9458 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25311) 
   
   <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 #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25296",
       "triggerID" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * dd8d7b161f71cef2099c746f4e54cb62d4b881dd Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25296) 
   
   <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 #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25296",
       "triggerID" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25311",
       "triggerID" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "triggerType" : "PUSH"
     }, {
       "hash" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25317",
       "triggerID" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * dd8d7b161f71cef2099c746f4e54cb62d4b881dd Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25296) 
   * d3f49cc4044ce90216b922b3f66023d87bdf9458 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25311) 
   * 0a9a446924d3099463a7a3528cc317e9e960bce5 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25317) 
   
   <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 #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25296",
       "triggerID" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25311",
       "triggerID" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "triggerType" : "PUSH"
     }, {
       "hash" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25317",
       "triggerID" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "956355809",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "958667123",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25879",
       "triggerID" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25879",
       "triggerID" : "958978355",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 6bf9e572bd13b954cad07b009c65dd4b72cc18ee Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744) 
   * 9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25879) 
   
   <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] TanYuxin-tyx commented on a change in pull request #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

Posted by GitBox <gi...@apache.org>.
TanYuxin-tyx commented on a change in pull request #17532:
URL: https://github.com/apache/flink/pull/17532#discussion_r740326336



##########
File path: flink-runtime/src/test/java/org/apache/flink/runtime/io/network/netty/ServerTransportErrorHandlingTest.java
##########
@@ -101,7 +104,22 @@ public void channelRead(ChannelHandlerContext ctx, Object msg)
         NettyTestUtil.NettyServerAndClient serverAndClient = null;
 
         try {
-            serverAndClient = initServerAndClient(protocol, createConfig());
+            for (int retry = 0; retry < NETTY_INIT_MAX_RETRY_TIMES; retry++) {
+                try {
+                    serverAndClient = initServerAndClient(protocol, createConfig());
+                    break;
+                } catch (Exception e) {
+                    if (retry >= NETTY_INIT_MAX_RETRY_TIMES - 1) {
+                        throw e;
+                    }
+                    if (e instanceof BindException

Review comment:
       Thanks. I'll initialize the server by using an occupied port to make the exception inevitable. And I will print the detailed stack of the exception by triggering it in the CI test.




-- 
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] wsry commented on pull request #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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


   @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] TanYuxin-tyx commented on pull request #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

Posted by GitBox <gi...@apache.org>.
TanYuxin-tyx commented on pull request #17532:
URL: https://github.com/apache/flink/pull/17532#issuecomment-960498172


   As shown above, I have reproduced the above exceptions. I added a new piece of code to print this exception.
   ```java
                   System.out.println("e instanceof BindException? " + (e instanceof BindException));
                   System.out.println("e.toString(): " + e.toString());
                   System.out.println("e.getLocalizedMessage(): " + e.getLocalizedMessage());
                   System.out.println(
                           "e contains Address already in use? "
                                   + (ExceptionUtils.findThrowableWithMessage(
                                                   e, "Address already in use"))
                                           .isPresent());
   ```
   The test results are here. 
   https://dev.azure.com/apache-flink/apache-flink/_build/results?buildId=25907&view=logs&j=a57e0635-3fad-5b08-57c7-a4142d7d6fa9&t=2ef0effc-1da1-50e5-c2bd-aab434b1c5b7&l=6530
   
   As the test results above, I found the `BindException` will be wrapped into `NativeIoException`. The content of `NativeIoException` is 'Address already in use'. 
   ![image](https://user-images.githubusercontent.com/20889547/140267454-f2819d1b-82ba-4f19-8a51-cd09a375e41a.png)
   
   However, when running on the local Mac, the exception thrown by the same code is `BindException`. This is a screenshot from my local IDEA test on Mac. 
   ![image](https://user-images.githubusercontent.com/20889547/140268119-e7bad038-92a9-449c-8288-9850276b98d9.png)
   
   In my opinion, the exception thrown initially is `BindException`, but when running the test on the test platform, it is wrapped as `NativeIoException`.
   So I think catch both `BindException` and exceptions with 'Address already in use' are necessary. 
   WDYT?, @guoweiM, @wsry. Thanks again.


-- 
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] wsry commented on pull request #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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






-- 
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 #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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






-- 
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 #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25296",
       "triggerID" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * dd8d7b161f71cef2099c746f4e54cb62d4b881dd Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25296) 
   
   <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 #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25296",
       "triggerID" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25311",
       "triggerID" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "triggerType" : "PUSH"
     }, {
       "hash" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25317",
       "triggerID" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "956355809",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "958667123",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25879",
       "triggerID" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25879",
       "triggerID" : "958978355",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "633084a4927bccc3958373c12ccd3441d303be68",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25907",
       "triggerID" : "960456231",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "633084a4927bccc3958373c12ccd3441d303be68",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25907",
       "triggerID" : "633084a4927bccc3958373c12ccd3441d303be68",
       "triggerType" : "PUSH"
     }, {
       "hash" : "",
       "status" : "DELETED",
       "url" : "TBD",
       "triggerID" : "960456231",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "8cc41c6ba9b71c1acf31ce4ff196459c9da6c923",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25910",
       "triggerID" : "8cc41c6ba9b71c1acf31ce4ff196459c9da6c923",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c46102d30eee42fefc803ff42ebb910706062831",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=27949",
       "triggerID" : "c46102d30eee42fefc803ff42ebb910706062831",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c46102d30eee42fefc803ff42ebb910706062831",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=27949",
       "triggerID" : "992387075",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * c46102d30eee42fefc803ff42ebb910706062831 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=27949) 
   
   <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 #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25296",
       "triggerID" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25311",
       "triggerID" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "triggerType" : "PUSH"
     }, {
       "hash" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25317",
       "triggerID" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "956355809",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "958667123",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25879",
       "triggerID" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25879",
       "triggerID" : "958978355",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "633084a4927bccc3958373c12ccd3441d303be68",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25907",
       "triggerID" : "960456231",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "633084a4927bccc3958373c12ccd3441d303be68",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25907",
       "triggerID" : "633084a4927bccc3958373c12ccd3441d303be68",
       "triggerType" : "PUSH"
     }, {
       "hash" : "",
       "status" : "DELETED",
       "url" : "TBD",
       "triggerID" : "960456231",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "8cc41c6ba9b71c1acf31ce4ff196459c9da6c923",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25910",
       "triggerID" : "8cc41c6ba9b71c1acf31ce4ff196459c9da6c923",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c46102d30eee42fefc803ff42ebb910706062831",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=27949",
       "triggerID" : "c46102d30eee42fefc803ff42ebb910706062831",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c46102d30eee42fefc803ff42ebb910706062831",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=27949",
       "triggerID" : "992387075",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * c46102d30eee42fefc803ff42ebb910706062831 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=27949) 
   
   <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 #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25296",
       "triggerID" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25311",
       "triggerID" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "triggerType" : "PUSH"
     }, {
       "hash" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25317",
       "triggerID" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "956355809",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 6bf9e572bd13b954cad07b009c65dd4b72cc18ee Azure: [CANCELED](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744) 
   
   <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] TanYuxin-tyx commented on a change in pull request #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

Posted by GitBox <gi...@apache.org>.
TanYuxin-tyx commented on a change in pull request #17532:
URL: https://github.com/apache/flink/pull/17532#discussion_r740326336



##########
File path: flink-runtime/src/test/java/org/apache/flink/runtime/io/network/netty/ServerTransportErrorHandlingTest.java
##########
@@ -101,7 +104,22 @@ public void channelRead(ChannelHandlerContext ctx, Object msg)
         NettyTestUtil.NettyServerAndClient serverAndClient = null;
 
         try {
-            serverAndClient = initServerAndClient(protocol, createConfig());
+            for (int retry = 0; retry < NETTY_INIT_MAX_RETRY_TIMES; retry++) {
+                try {
+                    serverAndClient = initServerAndClient(protocol, createConfig());
+                    break;
+                } catch (Exception e) {
+                    if (retry >= NETTY_INIT_MAX_RETRY_TIMES - 1) {
+                        throw e;
+                    }
+                    if (e instanceof BindException

Review comment:
       Thanks. I will make the exception inevitable by init the server using an occupied port. And I will print the detailed stack of the exception by triggering it in the CI test.




-- 
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 #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25296",
       "triggerID" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25311",
       "triggerID" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "triggerType" : "PUSH"
     }, {
       "hash" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25317",
       "triggerID" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "956355809",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "958667123",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25879",
       "triggerID" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25879",
       "triggerID" : "958978355",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "633084a4927bccc3958373c12ccd3441d303be68",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25907",
       "triggerID" : "960456231",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "633084a4927bccc3958373c12ccd3441d303be68",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25907",
       "triggerID" : "633084a4927bccc3958373c12ccd3441d303be68",
       "triggerType" : "PUSH"
     }, {
       "hash" : "",
       "status" : "DELETED",
       "url" : "TBD",
       "triggerID" : "960456231",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "8cc41c6ba9b71c1acf31ce4ff196459c9da6c923",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "8cc41c6ba9b71c1acf31ce4ff196459c9da6c923",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 633084a4927bccc3958373c12ccd3441d303be68 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25907) 
   * 8cc41c6ba9b71c1acf31ce4ff196459c9da6c923 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] TanYuxin-tyx commented on pull request #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

Posted by GitBox <gi...@apache.org>.
TanYuxin-tyx commented on pull request #17532:
URL: https://github.com/apache/flink/pull/17532#issuecomment-958978355


   @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] TanYuxin-tyx removed a comment on pull request #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

Posted by GitBox <gi...@apache.org>.
TanYuxin-tyx removed a comment on pull request #17532:
URL: https://github.com/apache/flink/pull/17532#issuecomment-958978355






-- 
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 #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25296",
       "triggerID" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25311",
       "triggerID" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "triggerType" : "PUSH"
     }, {
       "hash" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25317",
       "triggerID" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "956355809",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "958667123",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25879",
       "triggerID" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25879",
       "triggerID" : "958978355",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "633084a4927bccc3958373c12ccd3441d303be68",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25907",
       "triggerID" : "960456231",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "633084a4927bccc3958373c12ccd3441d303be68",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25907",
       "triggerID" : "633084a4927bccc3958373c12ccd3441d303be68",
       "triggerType" : "PUSH"
     }, {
       "hash" : "",
       "status" : "DELETED",
       "url" : "TBD",
       "triggerID" : "960456231",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "8cc41c6ba9b71c1acf31ce4ff196459c9da6c923",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25910",
       "triggerID" : "8cc41c6ba9b71c1acf31ce4ff196459c9da6c923",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c46102d30eee42fefc803ff42ebb910706062831",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=27949",
       "triggerID" : "c46102d30eee42fefc803ff42ebb910706062831",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 8cc41c6ba9b71c1acf31ce4ff196459c9da6c923 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25910) 
   * c46102d30eee42fefc803ff42ebb910706062831 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=27949) 
   
   <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 #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25296",
       "triggerID" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25311",
       "triggerID" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "triggerType" : "PUSH"
     }, {
       "hash" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25317",
       "triggerID" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "956355809",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "958667123",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25879",
       "triggerID" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25879",
       "triggerID" : "958978355",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "633084a4927bccc3958373c12ccd3441d303be68",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25907",
       "triggerID" : "960456231",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "633084a4927bccc3958373c12ccd3441d303be68",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25907",
       "triggerID" : "633084a4927bccc3958373c12ccd3441d303be68",
       "triggerType" : "PUSH"
     }, {
       "hash" : "",
       "status" : "DELETED",
       "url" : "TBD",
       "triggerID" : "960456231",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "8cc41c6ba9b71c1acf31ce4ff196459c9da6c923",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25910",
       "triggerID" : "8cc41c6ba9b71c1acf31ce4ff196459c9da6c923",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c46102d30eee42fefc803ff42ebb910706062831",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=27949",
       "triggerID" : "c46102d30eee42fefc803ff42ebb910706062831",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c46102d30eee42fefc803ff42ebb910706062831",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=27949",
       "triggerID" : "992387075",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * c46102d30eee42fefc803ff42ebb910706062831 Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=27949) 
   
   <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] wsry commented on pull request #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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


   @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] flinkbot edited a comment on pull request #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25296",
       "triggerID" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25311",
       "triggerID" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * dd8d7b161f71cef2099c746f4e54cb62d4b881dd Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25296) 
   * d3f49cc4044ce90216b922b3f66023d87bdf9458 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25311) 
   
   <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 #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25296",
       "triggerID" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25311",
       "triggerID" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "triggerType" : "PUSH"
     }, {
       "hash" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25317",
       "triggerID" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 0a9a446924d3099463a7a3528cc317e9e960bce5 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25317) 
   
   <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] TanYuxin-tyx commented on a change in pull request #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

Posted by GitBox <gi...@apache.org>.
TanYuxin-tyx commented on a change in pull request #17532:
URL: https://github.com/apache/flink/pull/17532#discussion_r739987832



##########
File path: flink-runtime/src/test/java/org/apache/flink/runtime/io/network/netty/ServerTransportErrorHandlingTest.java
##########
@@ -101,7 +104,22 @@ public void channelRead(ChannelHandlerContext ctx, Object msg)
         NettyTestUtil.NettyServerAndClient serverAndClient = null;
 
         try {
-            serverAndClient = initServerAndClient(protocol, createConfig());
+            for (int retry = 0; retry < NETTY_INIT_MAX_RETRY_TIMES; retry++) {
+                try {
+                    serverAndClient = initServerAndClient(protocol, createConfig());
+                    break;
+                } catch (Exception e) {
+                    if (retry >= NETTY_INIT_MAX_RETRY_TIMES - 1) {
+                        throw e;

Review comment:
       Thanks a lot for reviewing. @guoweiM   ok,I will fix it recently.




-- 
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 #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25296",
       "triggerID" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25311",
       "triggerID" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "triggerType" : "PUSH"
     }, {
       "hash" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25317",
       "triggerID" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "956355809",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "958667123",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 6bf9e572bd13b954cad07b009c65dd4b72cc18ee Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744) 
   
   <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 #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25296",
       "triggerID" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25311",
       "triggerID" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "triggerType" : "PUSH"
     }, {
       "hash" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25317",
       "triggerID" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "956355809",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "958667123",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25879",
       "triggerID" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25879",
       "triggerID" : "958978355",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "633084a4927bccc3958373c12ccd3441d303be68",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25907",
       "triggerID" : "960456231",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "633084a4927bccc3958373c12ccd3441d303be68",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25907",
       "triggerID" : "633084a4927bccc3958373c12ccd3441d303be68",
       "triggerType" : "PUSH"
     }, {
       "hash" : "",
       "status" : "DELETED",
       "url" : "TBD",
       "triggerID" : "960456231",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "8cc41c6ba9b71c1acf31ce4ff196459c9da6c923",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25910",
       "triggerID" : "8cc41c6ba9b71c1acf31ce4ff196459c9da6c923",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 633084a4927bccc3958373c12ccd3441d303be68 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25907) 
   * 8cc41c6ba9b71c1acf31ce4ff196459c9da6c923 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25910) 
   
   <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 #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25296",
       "triggerID" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25311",
       "triggerID" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "triggerType" : "PUSH"
     }, {
       "hash" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * dd8d7b161f71cef2099c746f4e54cb62d4b881dd Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25296) 
   * d3f49cc4044ce90216b922b3f66023d87bdf9458 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25311) 
   * 0a9a446924d3099463a7a3528cc317e9e960bce5 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 commented on pull request #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * dd8d7b161f71cef2099c746f4e54cb62d4b881dd 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 #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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






-- 
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 #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25296",
       "triggerID" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25311",
       "triggerID" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "triggerType" : "PUSH"
     }, {
       "hash" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25317",
       "triggerID" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 0a9a446924d3099463a7a3528cc317e9e960bce5 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25317) 
   * 6bf9e572bd13b954cad07b009c65dd4b72cc18ee 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] TanYuxin-tyx commented on pull request #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

Posted by GitBox <gi...@apache.org>.
TanYuxin-tyx commented on pull request #17532:
URL: https://github.com/apache/flink/pull/17532#issuecomment-960456231


   @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] wsry commented on pull request #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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


   @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] flinkbot edited a comment on pull request #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25296",
       "triggerID" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25311",
       "triggerID" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "triggerType" : "PUSH"
     }, {
       "hash" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25317",
       "triggerID" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "956355809",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "958667123",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25879",
       "triggerID" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25879",
       "triggerID" : "958978355",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1 Azure: [CANCELED](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25879) 
   
   <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] wsry closed pull request #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

Posted by GitBox <gi...@apache.org>.
wsry closed pull request #17532:
URL: https://github.com/apache/flink/pull/17532


   


-- 
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] wsry commented on pull request #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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


   The change looks good to me. 
   @guoweiM Could you please also take a look?


-- 
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 #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25296",
       "triggerID" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25311",
       "triggerID" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "triggerType" : "PUSH"
     }, {
       "hash" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25317",
       "triggerID" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * d3f49cc4044ce90216b922b3f66023d87bdf9458 Azure: [CANCELED](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25311) 
   * 0a9a446924d3099463a7a3528cc317e9e960bce5 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25317) 
   
   <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] TanYuxin-tyx commented on pull request #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

Posted by GitBox <gi...@apache.org>.
TanYuxin-tyx commented on pull request #17532:
URL: https://github.com/apache/flink/pull/17532#issuecomment-956355809


   @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] flinkbot edited a comment on pull request #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25296",
       "triggerID" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25311",
       "triggerID" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "triggerType" : "PUSH"
     }, {
       "hash" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25317",
       "triggerID" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "956355809",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "958667123",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 6bf9e572bd13b954cad07b009c65dd4b72cc18ee Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744) 
   * 9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1 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] TanYuxin-tyx commented on pull request #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

Posted by GitBox <gi...@apache.org>.
TanYuxin-tyx commented on pull request #17532:
URL: https://github.com/apache/flink/pull/17532#issuecomment-956355809


   @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] flinkbot edited a comment on pull request #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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






-- 
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 #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25296",
       "triggerID" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25311",
       "triggerID" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "triggerType" : "PUSH"
     }, {
       "hash" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25317",
       "triggerID" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "956355809",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "958667123",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25879",
       "triggerID" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25879",
       "triggerID" : "958978355",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "633084a4927bccc3958373c12ccd3441d303be68",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "960456231",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "",
       "status" : "CANCELED",
       "url" : "TBD",
       "triggerID" : "960456231",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "633084a4927bccc3958373c12ccd3441d303be68",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "633084a4927bccc3958373c12ccd3441d303be68",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   *  Unknown: [CANCELED](TBD) 
   * 633084a4927bccc3958373c12ccd3441d303be68 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 #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25296",
       "triggerID" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25311",
       "triggerID" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "triggerType" : "PUSH"
     }, {
       "hash" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25317",
       "triggerID" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "956355809",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "958667123",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25879",
       "triggerID" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25879",
       "triggerID" : "958978355",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "633084a4927bccc3958373c12ccd3441d303be68",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25907",
       "triggerID" : "960456231",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "633084a4927bccc3958373c12ccd3441d303be68",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25907",
       "triggerID" : "633084a4927bccc3958373c12ccd3441d303be68",
       "triggerType" : "PUSH"
     }, {
       "hash" : "",
       "status" : "DELETED",
       "url" : "TBD",
       "triggerID" : "960456231",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "8cc41c6ba9b71c1acf31ce4ff196459c9da6c923",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25910",
       "triggerID" : "8cc41c6ba9b71c1acf31ce4ff196459c9da6c923",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 8cc41c6ba9b71c1acf31ce4ff196459c9da6c923 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25910) 
   
   <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 #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25296",
       "triggerID" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25311",
       "triggerID" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "triggerType" : "PUSH"
     }, {
       "hash" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25317",
       "triggerID" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "956355809",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "958667123",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25879",
       "triggerID" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25879",
       "triggerID" : "958978355",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "",
       "status" : "CANCELED",
       "url" : "TBD",
       "triggerID" : "960456231",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "633084a4927bccc3958373c12ccd3441d303be68",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25907",
       "triggerID" : "960456231",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "633084a4927bccc3958373c12ccd3441d303be68",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25907",
       "triggerID" : "633084a4927bccc3958373c12ccd3441d303be68",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   *  Unknown: [CANCELED](TBD) 
   * 633084a4927bccc3958373c12ccd3441d303be68 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25907) 
   
   <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] guoweiM commented on a change in pull request #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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



##########
File path: flink-runtime/src/test/java/org/apache/flink/runtime/io/network/netty/ServerTransportErrorHandlingTest.java
##########
@@ -101,7 +104,22 @@ public void channelRead(ChannelHandlerContext ctx, Object msg)
         NettyTestUtil.NettyServerAndClient serverAndClient = null;
 
         try {
-            serverAndClient = initServerAndClient(protocol, createConfig());
+            for (int retry = 0; retry < NETTY_INIT_MAX_RETRY_TIMES; retry++) {
+                try {
+                    serverAndClient = initServerAndClient(protocol, createConfig());
+                    break;
+                } catch (Exception e) {
+                    if (retry >= NETTY_INIT_MAX_RETRY_TIMES - 1) {
+                        throw e;

Review comment:
       Maybe we should give more details in the `Exception`. Such as the retry failed. WDYT?




-- 
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 #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25296",
       "triggerID" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25311",
       "triggerID" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "triggerType" : "PUSH"
     }, {
       "hash" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25317",
       "triggerID" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "956355809",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "958667123",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 6bf9e572bd13b954cad07b009c65dd4b72cc18ee Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744) 
   
   <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] TanYuxin-tyx commented on pull request #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

Posted by GitBox <gi...@apache.org>.
TanYuxin-tyx commented on pull request #17532:
URL: https://github.com/apache/flink/pull/17532#issuecomment-958978355


   @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] guoweiM commented on pull request #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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


   Thanks @TanYuxin-tyx for invest this problem. I looks good to me. Please go ahead


-- 
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 #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25296",
       "triggerID" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25311",
       "triggerID" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "triggerType" : "PUSH"
     }, {
       "hash" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25317",
       "triggerID" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 0a9a446924d3099463a7a3528cc317e9e960bce5 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25317) 
   * 6bf9e572bd13b954cad07b009c65dd4b72cc18ee Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744) 
   
   <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] TanYuxin-tyx commented on pull request #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

Posted by GitBox <gi...@apache.org>.
TanYuxin-tyx commented on pull request #17532:
URL: https://github.com/apache/flink/pull/17532#issuecomment-958978355






-- 
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] guoweiM commented on a change in pull request #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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



##########
File path: flink-runtime/src/test/java/org/apache/flink/runtime/io/network/netty/ServerTransportErrorHandlingTest.java
##########
@@ -101,7 +104,22 @@ public void channelRead(ChannelHandlerContext ctx, Object msg)
         NettyTestUtil.NettyServerAndClient serverAndClient = null;
 
         try {
-            serverAndClient = initServerAndClient(protocol, createConfig());
+            for (int retry = 0; retry < NETTY_INIT_MAX_RETRY_TIMES; retry++) {
+                try {
+                    serverAndClient = initServerAndClient(protocol, createConfig());
+                    break;
+                } catch (Exception e) {
+                    if (retry >= NETTY_INIT_MAX_RETRY_TIMES - 1) {
+                        throw e;
+                    }
+                    if (e instanceof BindException

Review comment:
       I am not sure but from the test url I find the `Exception` is following
   ![image](https://user-images.githubusercontent.com/26054913/139632551-4fcabc48-b11f-4d95-93c9-8ef6804100b5.png)
   
   So I would suggest to see what exactly exception is when the port is used.
   WDYT?




-- 
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 #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25296",
       "triggerID" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25311",
       "triggerID" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "triggerType" : "PUSH"
     }, {
       "hash" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25317",
       "triggerID" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "956355809",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "958667123",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25879",
       "triggerID" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25879",
       "triggerID" : "958978355",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "633084a4927bccc3958373c12ccd3441d303be68",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25907",
       "triggerID" : "960456231",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "633084a4927bccc3958373c12ccd3441d303be68",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25907",
       "triggerID" : "633084a4927bccc3958373c12ccd3441d303be68",
       "triggerType" : "PUSH"
     }, {
       "hash" : "",
       "status" : "DELETED",
       "url" : "TBD",
       "triggerID" : "960456231",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 633084a4927bccc3958373c12ccd3441d303be68 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25907) 
   
   <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 #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25296",
       "triggerID" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25311",
       "triggerID" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "triggerType" : "PUSH"
     }, {
       "hash" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25317",
       "triggerID" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "956355809",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "958667123",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25879",
       "triggerID" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25879",
       "triggerID" : "958978355",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "633084a4927bccc3958373c12ccd3441d303be68",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25907",
       "triggerID" : "960456231",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "633084a4927bccc3958373c12ccd3441d303be68",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25907",
       "triggerID" : "633084a4927bccc3958373c12ccd3441d303be68",
       "triggerType" : "PUSH"
     }, {
       "hash" : "",
       "status" : "DELETED",
       "url" : "TBD",
       "triggerID" : "960456231",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "8cc41c6ba9b71c1acf31ce4ff196459c9da6c923",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25910",
       "triggerID" : "8cc41c6ba9b71c1acf31ce4ff196459c9da6c923",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c46102d30eee42fefc803ff42ebb910706062831",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "c46102d30eee42fefc803ff42ebb910706062831",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 8cc41c6ba9b71c1acf31ce4ff196459c9da6c923 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25910) 
   * c46102d30eee42fefc803ff42ebb910706062831 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 #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25296",
       "triggerID" : "dd8d7b161f71cef2099c746f4e54cb62d4b881dd",
       "triggerType" : "PUSH"
     }, {
       "hash" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25311",
       "triggerID" : "d3f49cc4044ce90216b922b3f66023d87bdf9458",
       "triggerType" : "PUSH"
     }, {
       "hash" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25317",
       "triggerID" : "0a9a446924d3099463a7a3528cc317e9e960bce5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "956355809",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "6bf9e572bd13b954cad07b009c65dd4b72cc18ee",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25744",
       "triggerID" : "958667123",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25879",
       "triggerID" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9549c71bdc0ceec5fbccce3a0f3f4a04efc233f1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25879",
       "triggerID" : "958978355",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "633084a4927bccc3958373c12ccd3441d303be68",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25907",
       "triggerID" : "960456231",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "633084a4927bccc3958373c12ccd3441d303be68",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25907",
       "triggerID" : "633084a4927bccc3958373c12ccd3441d303be68",
       "triggerType" : "PUSH"
     }, {
       "hash" : "",
       "status" : "DELETED",
       "url" : "TBD",
       "triggerID" : "960456231",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "8cc41c6ba9b71c1acf31ce4ff196459c9da6c923",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25910",
       "triggerID" : "8cc41c6ba9b71c1acf31ce4ff196459c9da6c923",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c46102d30eee42fefc803ff42ebb910706062831",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=27949",
       "triggerID" : "c46102d30eee42fefc803ff42ebb910706062831",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * c46102d30eee42fefc803ff42ebb910706062831 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=27949) 
   
   <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] wsry commented on pull request #17532: [FLINK-22096][tests] Fix port conflict for ServerTransportErrorHandlingTest#testRemoteClose

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


   Merged.


-- 
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