diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2024-05-15 15:17:12 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2024-05-15 15:52:16 +0000 |
| commit | 8b31dcc161891eb3cdab277e5266ac13b9b2d5dc (patch) | |
| tree | 5ac2d9c182873c53502b09f386ed632299618a92 /pkg/flatrpc/flatrpc.fbs | |
| parent | 64beb9fad0356edc2364c8816727e7683b17d9c3 (diff) | |
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.
Diffstat (limited to 'pkg/flatrpc/flatrpc.fbs')
| -rw-r--r-- | pkg/flatrpc/flatrpc.fbs | 8 |
1 files changed, 4 insertions, 4 deletions
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; } |
