Added backup status JSON output to backup workload to get sim coverage.

This commit is contained in:
Stephen Atherton 2019-03-12 03:34:38 -07:00
parent c1745b9061
commit e9b8bf601e
1 changed files with 2 additions and 0 deletions

View File

@ -192,6 +192,8 @@ struct BackupAndRestoreCorrectnessWorkload : TestWorkload {
loop {
std::string status = wait(agent.getStatus(cx, true, tag));
puts(status.c_str());
std::string statusJSON = wait(agent.getStatusJSON(cx, tag));
puts(statusJSON.c_str());
wait(delay(2.0));
}
}