What steps will reproduce the problem?
1. Start sever
2. connect to configuration interface via telnet
3. change a property of a connected plugin
4. if everything is ok, you will get a KO instead of an OK
This code is found in the ServerConfigurationServer file.
if (plugin.setParameter(paramName, paramValue))
ps.println("KO (no such parameter)");
else
ps.println("OK");
Should probably be
if (plugin.setParameter(paramName, paramValue))
ps.println("OK");
else
ps.println("KO (no such parameter)");
Original issue reported on code.google.com by
Mazy...@gmail.comon 30 Oct 2011 at 2:26