Donald Ball

Results 13 comments of Donald Ball

Just going to observe that every time I see this name show up in a build failure, it makes me think less of everyone involved. Ignorance is one thing; knowing...

Right on. Worth noting that there are also a bunch of INFO logs preceding the SEVERE warnings: `03-Jun-2016 10:53:11.228 WARNING [localhost-startStop-2] org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesJdbc The web application [ROOT] registered the JDBC driver...

I do now have a sample uberwar that exhibits at least one leak on shutdown: ``` 03-Jun-2016 15:04:12.628 WARNING [localhost-startStop-1] org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesThreads The web application [sample] appears to have started a...

Briefly, it's much like the example war, but has this clojure file: ``` (ns sample.servlet (:require [io.pedestal.http])) (defn init [_ _]) (defn destroy [_]) (defn service [_ request response]) ```...

The require 'io.pedestal.http is the necessary condition for getting the leak of the timeout-daemon.

I wrote a maven that uses the AWS CLI to sidestep this whole mess. It's written in and for clojure but may be usable for other jvm projects: https://github.com/SparkFund/aws-cli-wagon

I have a similar need — I want to be able to write a route handler that calls other routes, specifying the method, body, headers, params, etc. but in all...

Further investigation reveals that the fastify `light-my-request` library seems very nicely suited for this purpose, but the wrinkle there is that the synthetic request that _it_ creates does not have...

Happy to report I have a working solution: This needs to be run once, in order to add restify's monkey patched methods to the `light-my-request` Request: ``` const { inject...

For what it's worth, I'm getting this too. It seems to happen on the second request to the cache which exercises a model loaded by foreign key and id, e.g...