diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2024-07-26 12:00:54 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2024-08-02 13:16:51 +0000 |
| commit | e47492d07d852b143ac4f7d33bb4dc4f900d2410 (patch) | |
| tree | a60162c2997a3ab00282b8edd1af6d3f70598881 /pkg/flatrpc/flatrpc.fbs | |
| parent | 137fdde817df60cccfeb9a40237533e48bc143ec (diff) | |
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.
Diffstat (limited to 'pkg/flatrpc/flatrpc.fbs')
| -rw-r--r-- | pkg/flatrpc/flatrpc.fbs | 2 |
1 files changed, 1 insertions, 1 deletions
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; |
