I used the eureka-client1.10.14 version in SpringCloud2020.3. There are some WARN logs recently. I put the detailed information below. Is it because my thread pool is not enough? looking forward to ...
Is there a way to have a bar work inside a ThreadExecutor context? with alive_bar(len(workables)) as bar: with ThreadPoolExecutor() as pool: for work in workables: pool.submit(process, work) bar() ...