Skip to content

SetBunnyPluginParameter returns wrong message #3

@GoogleCodeExporter

Description

@GoogleCodeExporter
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.com on 30 Oct 2011 at 2:26

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions