The send_command function now requires 6 arguments, switching back to
mon commands as that is what we used before.
Signed-off-by: Boris Ranto <branto@redhat.com>
results.append(result)
# Run the command
- instance.send_command(result, json.dumps(commands[index]), tag)
+ instance.send_command(result, 'mon', '', json.dumps(commands[index]), tag)
return results
# tag with 'seq' so that we can ingore these in notify function
result = CommandResult('seq')
- self.send_command(result, json.dumps(command), 'seq')
+ self.send_command(result, 'mon', '', json.dumps(command), 'seq')
return result.wait()