Dr. Hans-Peter Störr

Results 15 issues of Dr. Hans-Peter Störr

Hi! Thank you for providing OSGI-headers in simple-java-mail to make it deployable as bundle! Unfortunately I get some trouble when trying to deploy it, together with it's required OSGI-bundles (core-module,...

bug
help wanted
Priority-Low

It would be nice if JavaMelody could display the system environment variables (as returned by System.getenv()). This is often very useful to debug installation errors. This could, for instance, go...

enhancement

When monitoring an application, it is quite important to know when memory usage is too high - either to foresee a OutOfMemoryError threat or to see whether there is a...

enhancement

If you use the collector to monitor a couple of clusters of application servers, there are problems when some or all application servers of a cluster is not reachable. The...

enhancement

I suggest turning the integration test dockerfile-maven/plugin/src/it/multi-module into an actual example of two docker images where the second one is built from the contents of the other. Currently both are...

### Description I get a NullPointerException from the plugin when I try to build ``` ... ... ${docker.platform} ... ``` when the property docker.platform is empty. I introduced that as...

### Description When doing a "mvn install" for a packaging "docker-build" or "docker", nothing at all is put into the maven repository. Of course, the primary goal is building the...

I get the following exception when running do_history_conversion.py for two different Synergy repositories: ``` Traceback (most recent call last): File "./do_history_conversion.py", line 39, in cfe.ccm_fast_export(history, cgraphs) File "/home/tmdweb2git/ccm_git_etelco/ccm_fast_export.py", line 121,...

In Java Source files you often have short javadoc comments like /** * Starts an update process on the remote side. */ which needlessly take up precious vertical space, but...

I'd like to suggest an option to fold short conditional statements into one line: ``` if (xxx == null) { xxx = foo(); } ``` could be displayed as `if...