I have a test that always works locally on all machines I've tested it on, but fails now and then in the pipeline.
The test in question is written in Java and uses a thread pool with a static size of 1 to ensure that a scheduled event is fired under certain conditions. I use awaitility to await a certain state, but that state is not reached within the configured timeout.
Might threading be a problem? Is there any limit to the number threads?
it's very likely a threading problem. with a thread pool of one, you still have 2 threads inteacting, right? one awaiting on the result from the threadpool?
Sorry, should've been clearer on that. The underlying scheduler is assigned a thread pool of size 1, the application still runs on the main thread.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.