From 8b31dcc161891eb3cdab277e5266ac13b9b2d5dc Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 15 May 2024 15:17:12 +0200 Subject: pkg/flatrpc: remove executing info from execution result We needed it in the old RPC b/c messages could have been delivered out-of-order, so we could not receive executing info when execution is completed. With the new RPC out-of-order delivery can't happen. --- pkg/flatrpc/flatrpc.fbs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'pkg/flatrpc/flatrpc.fbs') diff --git a/pkg/flatrpc/flatrpc.fbs b/pkg/flatrpc/flatrpc.fbs index cebc306a4..01cd8190d 100644 --- a/pkg/flatrpc/flatrpc.fbs +++ b/pkg/flatrpc/flatrpc.fbs @@ -207,8 +207,8 @@ table ProgInfoRaw { // Result of executing a test program. table ExecResultRaw { - executing :ExecutingMessageRaw; - output :[uint8]; - error :string; - info :ProgInfoRaw; + id :int64; + output :[uint8]; + error :string; + info :ProgInfoRaw; } -- cgit mrf-deployment