mirror of
https://git.sfja.dk/Mikkel/slige.git
synced 2025-01-18 10:06:31 +00:00
return correct responses from sliger rpc
This commit is contained in:
parent
105a4eed8b
commit
4a0e23c193
@ -15,7 +15,8 @@ auto sliger::rpc::action::FlameGraph::perform_action(
|
||||
{
|
||||
auto json = vm.flame_graph_json();
|
||||
if (json) {
|
||||
writer->write(json.value());
|
||||
writer->write(
|
||||
std::format("{{ ok: true, flameGraph: \"{}\" }}", json.value()));
|
||||
} else {
|
||||
writer->write("null");
|
||||
}
|
||||
@ -28,9 +29,10 @@ auto sliger::rpc::action::CodeCoverage::perform_action(
|
||||
{
|
||||
auto json = vm.code_coverage_json();
|
||||
if (json) {
|
||||
writer->write(json.value());
|
||||
writer->write(
|
||||
std::format("{{ ok: true, codeCoverage: \"{}\" }}", json.value()));
|
||||
} else {
|
||||
writer->write("null");
|
||||
writer->write("{ ok: false }");
|
||||
}
|
||||
writer->flush();
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user