You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@accumulo.apache.org by GitBox <gi...@apache.org> on 2021/11/23 18:32:47 UTC

[GitHub] [accumulo-testing] Manno15 opened a new issue #169: Maven build fails

Manno15 opened a new issue #169:
URL: https://github.com/apache/accumulo-testing/issues/169


   Build for accumulo-testing is failing with the following errors:
   
   ```
   [ERROR] /home/jeffrey/git/accumulo-testing/src/main/java/org/apache/accumulo/testing/randomwalk/Module.java:[227,89] incompatible types: boolean cannot be converted to java.util.concurrent.BlockingQueue<java.lang.Runnable>
   [ERROR] /home/jeffrey/git/accumulo-testing/src/main/java/org/apache/accumulo/testing/randomwalk/bulk/Setup.java:[64,9] incompatible types: boolean cannot be converted to java.util.concurrent.BlockingQueue<java.lang.Runnable>
   ```
   The current commit is 711d28e83a91cbaa0754064a7d72c0f975f7de31 though I have had successful builds on this commit. 
   Command ran was maven clean package. 


-- 
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: notifications-unsubscribe@accumulo.apache.org

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



[GitHub] [accumulo-testing] DomGarguilo commented on issue #169: Maven build fails

Posted by GitBox <gi...@apache.org>.
DomGarguilo commented on issue #169:
URL: https://github.com/apache/accumulo-testing/issues/169#issuecomment-977019629


   It looks like its using the wrong method call for some reason.
   ```
   Candidates for method call ThreadPools.createFixedThreadPool(1, "RandomWalk Runner", false) are:    
   ThreadPoolExecutor createFixedThreadPool(int, String, boolean)  
   ThreadPoolExecutor createFixedThreadPool(int, String, BlockingQueue<Runnable>, boolean)   
   ThreadPoolExecutor createFixedThreadPool(int, long, TimeUnit, String, boolean)
   ```
   Its trying to use the second one where the first should be used.


-- 
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: notifications-unsubscribe@accumulo.apache.org

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



[GitHub] [accumulo-testing] Manno15 commented on issue #169: Maven build fails

Posted by GitBox <gi...@apache.org>.
Manno15 commented on issue #169:
URL: https://github.com/apache/accumulo-testing/issues/169#issuecomment-977086690


   This is because `ThreadPoolExecutor createFixedThreadPool(int, String, boolean)` no longer exists inside `ThreadPools.java` in accumulo. It was removed with the OpenTelemetry changes since we don't need to specify `enableTracing`. I will have a PR that changes the two classes in accumulo-testing to just using the (int, String) that replaced it.


-- 
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: notifications-unsubscribe@accumulo.apache.org

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



[GitHub] [accumulo-testing] Manno15 closed issue #169: Maven build fails

Posted by GitBox <gi...@apache.org>.
Manno15 closed issue #169:
URL: https://github.com/apache/accumulo-testing/issues/169


   


-- 
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: notifications-unsubscribe@accumulo.apache.org

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