diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2024-05-03 08:44:48 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2024-05-03 15:57:46 +0000 |
| commit | 610f2a54d02f8cf4f2454c03bf679b602e6e59b6 (patch) | |
| tree | dd1768a4e516fe9fb6945613ebf009eda82317f6 /vm/vmm | |
| parent | 3a81775029176dd4c693542e6715b985fa7ade4d (diff) | |
pkg/rpctype: prepare for not using for target communication
Remove things that are only needed for target VM communication:
conditional compression, timeout scaling, traffic stats.
To minimize diffs when we switch target VM communication to flatrpc.
Diffstat (limited to 'vm/vmm')
| -rw-r--r-- | vm/vmm/vmm.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/vmm/vmm.go b/vm/vmm/vmm.go index 67f12f4c7..71dfd39b4 100644 --- a/vm/vmm/vmm.go +++ b/vm/vmm/vmm.go @@ -25,7 +25,7 @@ import ( var vmctlStatusRegex = regexp.MustCompile(`^\s+([0-9]+)\b.*\brunning`) func init() { - vmimpl.Register("vmm", ctor, true, false) + vmimpl.Register("vmm", ctor, true) } type Config struct { |
