From 00fb1747bb7633aa5bb3f7b13201d81dededfd49 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 1 Jul 2024 11:18:41 +0200 Subject: pkg/flatrpc: rename StartLeakChecks to CorpusTriaged It's a more general name that says what happened rather than a detail of what excutor should do. We can use this notification for other things as well. --- executor/executor_runner.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'executor') diff --git a/executor/executor_runner.h b/executor/executor_runner.h index 766669dda..3bffcaeb2 100644 --- a/executor/executor_runner.h +++ b/executor/executor_runner.h @@ -508,7 +508,7 @@ private: Handle(*msg); else if (auto* msg = raw.msg.AsSignalUpdate()) Handle(*msg); - else if (auto* msg = raw.msg.AsStartLeakChecks()) + else if (auto* msg = raw.msg.AsCorpusTriaged()) Handle(*msg); else if (auto* msg = raw.msg.AsStateRequest()) Handle(*msg); @@ -637,10 +637,10 @@ private: max_signal_->Remove(pc); } - void Handle(const rpc::StartLeakChecksRawT& msg) + void Handle(const rpc::CorpusTriagedRawT& msg) { // TODO: repair leak checking (#4728). - debug("recv start leak checks\n"); + debug("recv corpus triaged\n"); } void Handle(const rpc::StateRequestRawT& msg) -- cgit mrf-deployment