Results 66 comments of ZHANG Dapeng

>It seems like that one attempt should be per-hedge and per-(higher-level) retry. I disagree with this because we can not tell if two hedging attempts are connecting to the same...

There are two levels of commitment: 1. reached the application logic of the backend - no more transparent retry, but normal retry or hedging is allowed. 2. `committed` - no...

>What is it protecting against? I think it's as the spec says "This extra caution is needed because this case involves extra load on the wire". So we only allow...

I think there was a debate on limit of transparent retries and then the spec got updated to the current version. + @markdroth @ericgribkoff

Now we treat local-only transparent retry unlimited; and otherwise transparent-retry once, but the question is per-hedge or per overall RPC.

I just searched for similar issues on SO and found this https://stackoverflow.com/questions/33866209/linking-to-javadoc-io-using-javadoc-link-option not tested it out yet.

From the above SO comments, I found a workaround using `-linkoffline`: ``` touch package-list && jdk-11.0.1/bin/javadoc -linkoffline 'https://grpc.io/grpc-java/javadoc/' . Test.java ``` To fix the original issue, I think grpc javadoc...

>If you can explain me how I can configure my build tool (gradle 5) to do that... @ST-DDT Can you provide a simple gradle file for your `Test.java`, so that...

Thank you @ST-DDT , that will be very helpful.

@ST-DDT I upload a workaround [here](https://github.com/grpc/grpc.github.io/files/2728131/test_workaround.zip) **build.gradle** ```gradle apply plugin: 'java' javadoc { options { links 'https://docs.oracle.com/javase/8/docs/api/' linksOffline 'https://grpc.io/grpc-java/javadoc/', '.' } } ``` **Directory-Structure** - src - main - java...