You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am integrating Simple Java Mail to the Bootique framework. It works great otherwise, but I noticed a small inconsistency. If I assemble the mailer like this:
Custom threadPoolSize and threadPoolKeepAliveTime are ignored, as the internal ExecutorService is resolved in MailerGenericBuilderImpl constructor, prior to those properties being redefined.
I found a workaround, which is to configured ExecutorService on my own, and pass it over to .withExecutorService. So while this is not an immediate issue for Bootique, I still figured I'd mention it here.
The text was updated successfully, but these errors were encountered:
I am integrating Simple Java Mail to the Bootique framework. It works great otherwise, but I noticed a small inconsistency. If I assemble the mailer like this:
Custom
threadPoolSize
andthreadPoolKeepAliveTime
are ignored, as the internal ExecutorService is resolved inMailerGenericBuilderImpl
constructor, prior to those properties being redefined.I found a workaround, which is to configured ExecutorService on my own, and pass it over to
.withExecutorService
. So while this is not an immediate issue for Bootique, I still figured I'd mention it here.The text was updated successfully, but these errors were encountered: