ds is intended for command output (like stdout), to be shown/saved
when there's no error returned; ss is for error status (like stderr)
to further explain the error. mgr Python tracebacks should go to
the latter.
Signed-off-by: Dan Mick <dan.mick@redhat.com>
int MgrPyModule::handle_command(
const cmdmap_t &cmdmap,
- std::stringstream *ss,
- std::stringstream *ds)
+ std::stringstream *ds,
+ std::stringstream *ss)
{
assert(ss != nullptr);
assert(ds != nullptr);
int handle_command(
const cmdmap_t &cmdmap,
- std::stringstream *ss,
- std::stringstream *ds);
+ std::stringstream *ds,
+ std::stringstream *ss);
};
#endif