From e47492d07d852b143ac4f7d33bb4dc4f900d2410 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 26 Jul 2024 12:00:54 +0200 Subject: pkg/rpcserver: use dense VM indices instead of string names Using actual VM indices for VM identification allows to match these indices to VMs in the pool, allows to use dense arrays to store information about runners (e.g. in queue.Distributor), and just removes string names as unnecessary additional entities. --- pkg/flatrpc/flatrpc.fbs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkg/flatrpc/flatrpc.fbs') diff --git a/pkg/flatrpc/flatrpc.fbs b/pkg/flatrpc/flatrpc.fbs index c7516e624..690286681 100644 --- a/pkg/flatrpc/flatrpc.fbs +++ b/pkg/flatrpc/flatrpc.fbs @@ -36,7 +36,7 @@ enum Feature : uint64 (bit_flags) { } table ConnectRequestRaw { - name :string; + id :int64; arch :string; git_revision :string; syz_revision :string; -- cgit mrf-deployment