Re: Application silently shuts down by itself after running for some hours

2017-03-07 Thread Kevin Corcoran
On Mon, Mar 6, 2017 at 11:56 PM, JokkeB wrote: > After adding this, I still can't see an exception before the app dies. > I've encountered this before when the Linux "OOM killer" kicks in, which is especially likely if you are running your application on a resource-constrained system (say, a VM

Re: how to send SSL certificate in POST request?

2017-02-24 Thread Kevin Corcoran
On Thu, Feb 23, 2017 at 5:11 PM, mascip wrote: > Amazing, thank you James, thank you Micheal, it works! > > In Perl things are often pretty complex, but in this specific case the > code is dead easy: > > my $client = REST::Client->new( > cert => '/path/to/ssl.cert', > key => '/path/to/ssl.key

Re: clojure.spec

2016-05-25 Thread Kevin Corcoran
Would it be a reasonable feature request to ask for Java classes to be implicitly converted to specs, the same as predicates? FWIW, plumatic/schema allows classes to be used as schemas. The spec guide contains this example: (import java.util.Date) (s/valid? #(instance? Date %) (Date.)) ;; true

Re: [ANN] lein-collisions: a plugin to find classpath collisions

2015-07-09 Thread Kevin Corcoran
Herwig, Thanks for the explanation! -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe

Re: [ANN] lein-collisions: a plugin to find classpath collisions

2015-07-09 Thread Kevin Corcoran
Hi Herwig,​ This looks nice, thanks for contributing. One question, though: The projects on which I work already use lein's :pedantic? flag. Is there any reason we might want to use lein-collisions instead of :pedantic? - Kevin -- You received this message because you are subscribed to the Go