Ron Pressler
Ron Pressler
Oh, the daemon problem, currently handled by the `Agent` class, has a solution in JDK 8/9. But the problem you mention is different. It requires reflection in the *capsule's* JVM...
The SNAPSHOT version should now run on JDK 9 (without JMX tunneling)
TBH, I don't recall at the moment why I made that change, so let me think about it. But I believe there are logs emitted even before caplets are loaded;...
BTW, to override stdout/err in the *application* process (which, I think, is even more important to you), you'll need to do that by overriding the `agent` method, which is called...
You're right, but the tests assume an exception. Which makes more sense to you and why?
Hi. I'll take a look and get back to you on this next week, but at any rate, at this point in time we are not recommending the use of...
You could use the [jul-to-slf4j bridge](http://www.slf4j.org/legacy.html).
Hi. The best way to get this addressed as quickly as possible is for you to troubleshoot the problem yourself by looking at the Comsat code and submit a PR....
Verifying with ZK that you're alive before serving other nodes' requests is impractical. What we should do, is set the ZK connection timeout on the client (node) to be less...
Multipart parsing is currently not natively supported by Web Actors. You have a few options: you can either parse the buffer using a library such as [Apache Commons FileUpload](http://commons.apache.org/proper/commons-fileupload/apidocs/org/apache/commons/fileupload/MultipartStream.html), or...