You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by GitBox <gi...@apache.org> on 2020/07/05 03:36:37 UTC

[GitHub] [pulsar] jiazhai opened a new pull request #7453: Remove bouncy castle shaded module to avoid bring error of verifySingleJar

jiazhai opened a new pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453


   
   ### Motivation
   
   shade bouncy castle will cause some signature errors, this PR tries to remove the bouncy castle shaded module.
   
   Here is the related error stack:
   ```
   10:01:34.257 [pulsar-client-io-33-1] ERROR org.apache.pulsar.client.impl.ConsumerImpl - MessageCryptoBc may not included in the jar. e:
   java.lang.SecurityException: JCE cannot authenticate the provider BC
   	at javax.crypto.Cipher.getInstance(Cipher.java:657) ~[?:1.8.0_121]
   	at javax.crypto.Cipher.getInstance(Cipher.java:596) ~[?:1.8.0_121]
   	at org.apache.pulsar.client.impl.crypto.MessageCryptoBc.<init>(MessageCryptoBc.java:147) ~[classes/:?]
   	at org.apache.pulsar.client.impl.ConsumerImpl.<init>(ConsumerImpl.java:270) ~[classes/:?]
   	at org.apache.pulsar.client.impl.ConsumerImpl.newConsumerImpl(ConsumerImpl.java:209) ~[classes/:?]
   	at org.apache.pulsar.client.impl.PulsarClientImpl.lambda$doSingleTopicSubscribeAsync$5(PulsarClientImpl.java:364) ~[classes/:?]
   	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:656) ~[?:1.8.0_131]
   	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:632) ~[?:1.8.0_131]
   ...
   
   Caused by: java.util.jar.JarException: file:/Users/jia/.m2/repository/org/apache/pulsar/bouncy-castle-bc-shaded/2.7.0-SNAPSHOT/bouncy-castle-bc-shaded-2.7.0-SNAPSHOT.jar has unsigned entries - org/bouncycastle/cert/AttributeCertificateHolder.class
   	at javax.crypto.JarVerifier.verifySingleJar(JarVerifier.java:500) ~[?:1.8.0_121]
   	at javax.crypto.JarVerifier.verifyJars(JarVerifier.java:361) ~[?:1.8.0_121]
   	at javax.crypto.JarVerifier.verify(JarVerifier.java:289) ~[?:1.8.0_121]
   	at javax.crypto.JceSecurity.verifyProviderJar(JceSecurity.java:159) ~[?:1.8.0_121]
   	at javax.crypto.JceSecurity.getVerificationResult(JceSecurity.java:185) ~[?:1.8.0_121]
   	at javax.crypto.Cipher.getInstance(Cipher.java:653) ~[?:1.8.0_121]
   ```
   
   ### Modifications
   
   - Remove bouncy castle shaded module.
   - enhance test case to identify this error.
   
   ### Verifying this change
   
   ut passed.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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



[GitHub] [pulsar] jiazhai commented on pull request #7453: [WIP]Remove bouncy castle shaded module to avoid bring error of verifySingleJar

Posted by GitBox <gi...@apache.org>.
jiazhai commented on pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453#issuecomment-714328802


   /pulsarbot run-failure-checks


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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



[GitHub] [pulsar] jiazhai removed a comment on pull request #7453: [WIP]Remove bouncy castle shaded module to avoid bring error of verifySingleJar

Posted by GitBox <gi...@apache.org>.
jiazhai removed a comment on pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453#issuecomment-714444176


   /pulsarbot run-failure-checks


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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



[GitHub] [pulsar] jiazhai commented on pull request #7453: Remove bouncy castle shaded module to avoid bring error of verifySingleJar

Posted by GitBox <gi...@apache.org>.
jiazhai commented on pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453#issuecomment-660499959


   /pulsarbot run-failure-checks


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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



[GitHub] [pulsar] jiazhai removed a comment on pull request #7453: Remove bouncy castle shaded module to avoid bring error of verifySingleJar

Posted by GitBox <gi...@apache.org>.
jiazhai removed a comment on pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453#issuecomment-653896864


   /pulsarbot run-failure-checks


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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



[GitHub] [pulsar] eolivelli commented on pull request #7453: [WIP]Remove bouncy castle shaded module to avoid bring error of verifySingleJar

Posted by GitBox <gi...@apache.org>.
eolivelli commented on pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453#issuecomment-713343873


   In https://github.com/apache/pulsar/pull/8270 with the BK upgrade we will bring in BouncyCastle again.
   this change is coming with perfect timing 


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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



[GitHub] [pulsar] jiazhai commented on pull request #7453: Remove bouncy castle shaded module to avoid bring error of verifySingleJar

Posted by GitBox <gi...@apache.org>.
jiazhai commented on pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453#issuecomment-714935968


   /pulsarbot run-failure-checks


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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



[GitHub] [pulsar] wolfstudy commented on pull request #7453: Remove bouncy castle shaded module to avoid bring error of verifySingleJar

Posted by GitBox <gi...@apache.org>.
wolfstudy commented on pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453#issuecomment-713229425


   /pulsarbot run-failure-checks


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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



[GitHub] [pulsar] jiazhai commented on pull request #7453: Remove bouncy castle shaded module to avoid bring error of verifySingleJar

Posted by GitBox <gi...@apache.org>.
jiazhai commented on pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453#issuecomment-662871976


   /pulsarbot run-failure-checks


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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



[GitHub] [pulsar] codelipenghui commented on pull request #7453: Remove bouncy castle shaded module to avoid bring error of verifySingleJar

Posted by GitBox <gi...@apache.org>.
codelipenghui commented on pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453#issuecomment-653864970


   /pulsarbot run-failure-checks


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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



[GitHub] [pulsar] jiazhai commented on pull request #7453: Remove bouncy castle shaded module to avoid bring error of verifySingleJar

Posted by GitBox <gi...@apache.org>.
jiazhai commented on pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453#issuecomment-653950986


   /pulsarbot run-failure-checks


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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



[GitHub] [pulsar] jiazhai commented on pull request #7453: [WIP]Remove bouncy castle shaded module to avoid bring error of verifySingleJar

Posted by GitBox <gi...@apache.org>.
jiazhai commented on pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453#issuecomment-714444176


   /pulsarbot run-failure-checks


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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



[GitHub] [pulsar] jiazhai removed a comment on pull request #7453: Remove bouncy castle shaded module to avoid bring error of verifySingleJar

Posted by GitBox <gi...@apache.org>.
jiazhai removed a comment on pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453#issuecomment-668032244


   /pulsarbot run-failure-checks


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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



[GitHub] [pulsar] jiazhai closed pull request #7453: [WIP]Remove bouncy castle shaded module to avoid bring error of verifySingleJar

Posted by GitBox <gi...@apache.org>.
jiazhai closed pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453


   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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



[GitHub] [pulsar] codelipenghui commented on pull request #7453: Remove bouncy castle shaded module to avoid bring error of verifySingleJar

Posted by GitBox <gi...@apache.org>.
codelipenghui commented on pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453#issuecomment-659392592


   /pulsarbot run-failure-checks


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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



[GitHub] [pulsar] jiazhai commented on pull request #7453: [WIP]Remove bouncy castle shaded module to avoid bring error of verifySingleJar

Posted by GitBox <gi...@apache.org>.
jiazhai commented on pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453#issuecomment-713989060


   /pulsarbot run-failure-checks


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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



[GitHub] [pulsar] wolfstudy commented on pull request #7453: Remove bouncy castle shaded module to avoid bring error of verifySingleJar

Posted by GitBox <gi...@apache.org>.
wolfstudy commented on pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453#issuecomment-668995669


   Move this task to release2.6.2


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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



[GitHub] [pulsar] jiazhai commented on pull request #7453: Remove bouncy castle shaded module to avoid bring error of verifySingleJar

Posted by GitBox <gi...@apache.org>.
jiazhai commented on pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453#issuecomment-668032244


   /pulsarbot run-failure-checks


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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



[GitHub] [pulsar] codelipenghui closed pull request #7453: Remove bouncy castle shaded module to avoid bring error of verifySingleJar

Posted by GitBox <gi...@apache.org>.
codelipenghui closed pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453


   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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



[GitHub] [pulsar] jiazhai merged pull request #7453: Remove bouncy castle shaded module to avoid bring error of verifySingleJar

Posted by GitBox <gi...@apache.org>.
jiazhai merged pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453


   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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



[GitHub] [pulsar] jiazhai closed pull request #7453: [WIP]Remove bouncy castle shaded module to avoid bring error of verifySingleJar

Posted by GitBox <gi...@apache.org>.
jiazhai closed pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453


   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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



[GitHub] [pulsar] sijie commented on pull request #7453: Remove bouncy castle shaded module to avoid bring error of verifySingleJar

Posted by GitBox <gi...@apache.org>.
sijie commented on pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453#issuecomment-659830917


   ping @jiazhai 


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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



[GitHub] [pulsar] Jennifer88huang commented on pull request #7453: Remove bouncy castle shaded module to avoid bring error of verifySingleJar

Posted by GitBox <gi...@apache.org>.
Jennifer88huang commented on pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453#issuecomment-657945624


   /pulsarbot run-failure-checks


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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



[GitHub] [pulsar] wolfstudy commented on pull request #7453: Remove bouncy castle shaded module to avoid bring error of verifySingleJar

Posted by GitBox <gi...@apache.org>.
wolfstudy commented on pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453#issuecomment-664092027


   /pulsarbot run-failure-checks
   
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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



[GitHub] [pulsar] codelipenghui commented on pull request #7453: Remove bouncy castle shaded module to avoid bring error of verifySingleJar

Posted by GitBox <gi...@apache.org>.
codelipenghui commented on pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453#issuecomment-659075996


   /pulsarbot run-failure-checks


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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



[GitHub] [pulsar] sijie commented on pull request #7453: Remove bouncy castle shaded module to avoid bring error of verifySingleJar

Posted by GitBox <gi...@apache.org>.
sijie commented on pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453#issuecomment-657920061


   /pulsarbot run-failure-checks


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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



[GitHub] [pulsar] jiazhai commented on pull request #7453: Remove bouncy castle shaded module to avoid bring error of verifySingleJar

Posted by GitBox <gi...@apache.org>.
jiazhai commented on pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453#issuecomment-660483970


   rebased with latest master


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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



[GitHub] [pulsar] jiazhai commented on pull request #7453: [WIP]Remove bouncy castle shaded module to avoid bring error of verifySingleJar

Posted by GitBox <gi...@apache.org>.
jiazhai commented on pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453#issuecomment-714369289


   /pulsarbot run-failure-checks


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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



[GitHub] [pulsar] jiazhai commented on pull request #7453: Remove bouncy castle shaded module to avoid bring error of verifySingleJar

Posted by GitBox <gi...@apache.org>.
jiazhai commented on pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453#issuecomment-714969850


   would like to remove the 2.6.2 tag, since this pr changed some pom files


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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



[GitHub] [pulsar] jiazhai commented on pull request #7453: [WIP]Remove bouncy castle shaded module to avoid bring error of verifySingleJar

Posted by GitBox <gi...@apache.org>.
jiazhai commented on pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453#issuecomment-714509131


   /pulsarbot run-failure-checks


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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



[GitHub] [pulsar] jiazhai commented on pull request #7453: Remove bouncy castle shaded module to avoid bring error of verifySingleJar

Posted by GitBox <gi...@apache.org>.
jiazhai commented on pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453#issuecomment-662834562


   /pulsarbot run-failure-checks


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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



[GitHub] [pulsar] jiazhai commented on pull request #7453: [WIP]Remove bouncy castle shaded module to avoid bring error of verifySingleJar

Posted by GitBox <gi...@apache.org>.
jiazhai commented on pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453#issuecomment-714881926


   /pulsarbot run-failure-checks


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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



[GitHub] [pulsar] jiazhai removed a comment on pull request #7453: [WIP]Remove bouncy castle shaded module to avoid bring error of verifySingleJar

Posted by GitBox <gi...@apache.org>.
jiazhai removed a comment on pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453#issuecomment-714328802






----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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



[GitHub] [pulsar] jiazhai removed a comment on pull request #7453: [WIP]Remove bouncy castle shaded module to avoid bring error of verifySingleJar

Posted by GitBox <gi...@apache.org>.
jiazhai removed a comment on pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453#issuecomment-714369289


   /pulsarbot run-failure-checks


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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



[GitHub] [pulsar] jiazhai commented on pull request #7453: Remove bouncy castle shaded module to avoid bring error of verifySingleJar

Posted by GitBox <gi...@apache.org>.
jiazhai commented on pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453#issuecomment-653896864


   /pulsarbot run-failure-checks


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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



[GitHub] [pulsar] Jennifer88huang closed pull request #7453: Remove bouncy castle shaded module to avoid bring error of verifySingleJar

Posted by GitBox <gi...@apache.org>.
Jennifer88huang closed pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453


   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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



[GitHub] [pulsar] jiazhai commented on pull request #7453: Remove bouncy castle shaded module to avoid bring error of verifySingleJar

Posted by GitBox <gi...@apache.org>.
jiazhai commented on pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453#issuecomment-664759560


   seems there is still some signature issue.will do the fix


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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



[GitHub] [pulsar] jiazhai commented on pull request #7453: Remove bouncy castle shaded module to avoid bring error of verifySingleJar

Posted by GitBox <gi...@apache.org>.
jiazhai commented on pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453#issuecomment-706674277


   /pulsarbot run-failure-checks


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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



[GitHub] [pulsar] jiazhai commented on pull request #7453: Remove bouncy castle shaded module to avoid bring error of verifySingleJar

Posted by GitBox <gi...@apache.org>.
jiazhai commented on pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453#issuecomment-662891997


   /pulsarbot run-failure-checks


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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



[GitHub] [pulsar] jiazhai commented on pull request #7453: [WIP]Remove bouncy castle shaded module to avoid bring error of verifySingleJar

Posted by GitBox <gi...@apache.org>.
jiazhai commented on pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453#issuecomment-714821472


   /pulsarbot run-failure-checks


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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



[GitHub] [pulsar] merlimat commented on pull request #7453: Remove bouncy castle shaded module to avoid bring error of verifySingleJar

Posted by GitBox <gi...@apache.org>.
merlimat commented on pull request #7453:
URL: https://github.com/apache/pulsar/pull/7453#issuecomment-659000490


   /pulsarbot run-failure-checks
   
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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