craig mcclendon

Results 23 comments of craig mcclendon

This likely relates to https://github.com/hapifhir/hapi-fhir-jpaserver-starter/issues/339.

This is going to be semi-difficult if you're new to Java/Maven, and will likely be a pain to maintain. It may be cleaner/easier to make your modified feature a custom...

I created a unit test which reproduces the issue in my fork here: https://github.com/XcrigX/hapi-fhir/tree/3866_auth_deny_no_proactive_block_issue I wasn't certain if I should create a PR for it since I just have a...

It's not finding your interceptor class on the classpath: _[ca/uhn/fhir/jpa/starter/common/StarterJpaConfig.class]: Failed to instantiate [ca.uhn.fhir.rest.server.RestfulServer]: Factory method 'restfulServer' threw exception with message: Interceptor class was not found on classpath:_ There are...

> How do I manually compile the Interceptor? Since hapi-fhir-jpa-started is running under docker environment I've never tried to use the _hapi-extra-classes_ config, so I won't be of too much...

This is somewhat of a philosophical question related to this PR. In previous multi-threaded usages involving Hikari, there was likely a threadpool of platform threads which effectively throttled the number...

@bdeneuter - understood - it's a welcome PR. I'm just trying to spark some discussion/thought around "what's next". @enragedginger - yes, counting semaphores are the likely answer, but from a...

I can add some color to my own experience trying to use virtual threads with Hikari. I have a batch processing app that takes a set of data in one...

@svendiedrichsen I suppose one could set the connection timeout to a really high value to approximate it. My thought was that I'd still want to know about problems actually getting...

~I'm seeing similar issues with AuthorizationInterceptors and SearchNarrowingInterceptors. Registering with the IInterceptorService does not seem to fix the issue I'm seeing. Other interceptors do seem to fire, like the CustomInterceptorBean...