tess1o
tess1o
In that case only a ThreadFactory is passed into the method. The ExecutorService is created by Async class (Executors.newSingleThreadExecutor(fct)), so it's the class responsibility to close it.
This methods returns an empty list when you retrieve the issue via a search. To avoid the issue you can implement a method to get all comments using the Jira...
Pull request: https://github.com/rcarz/jira-client/pull/233
searchIssues has overloaded implementation, which accepts expandFields (the third argument): jira.searchIssues("project=myProject", null, "changelog.fields");
I'm also getting this issue. I use this library in a Spring boot application. I have a Service (scope = prototype) where the jira API is used. I'm getting the...
Changing httpclient (org.apache.httpcomponents:httpclient) version back to 4.2.5 resolved the issue. With version 4.5.13 I got the same issue.
https://github.com/langchain4j/langchain4j/blob/03528af8a1de431a506b8f44947865b11c2b4607/langchain4j-core/src/main/java/dev/langchain4j/internal/RetryUtils.java#L188 ``` /** * This method attempts to execute a given action up to a specified number of times with a 1-second delay. * If the action fails on all...
I'm trying to build a bot that should be able to do some actions (using tools) and reply to the user. Just an example of tools I've implemented: 1. "call...
@Kugaaa, Yes, that looks similar to what I'd like to achieve. If LLM thinks that tools (functions) can't be used I'd like to get some default message or throw an...