Jans Rautenbach
Jans Rautenbach
In my case I got this error because the collection of URLs contained a non-existent directory. Filtering it out solved the problem: ```java List urls = ClasspathHelper.forJavaClassPath() .stream() .filter(url ->...
Indeed, it seems there is no pagination implemented where the assignable users are fetched: https://github.com/whyisdifficult/jiratui/blob/fc97e1d8e81c6a3fb8537eb60b176a5ad1b73392/src/jiratui/api_controller/controller.py#L608 I noticed that the limit was hardcoded to 1000: https://github.com/whyisdifficult/jiratui/blob/fc97e1d8e81c6a3fb8537eb60b176a5ad1b73392/src/jiratui/api_controller/constants.py#L16 I ran the underlying HTTP...