From 610f2a54d02f8cf4f2454c03bf679b602e6e59b6 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 3 May 2024 08:44:48 +0200 Subject: 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. --- vm/cuttlefish/cuttlefish.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vm/cuttlefish/cuttlefish.go') diff --git a/vm/cuttlefish/cuttlefish.go b/vm/cuttlefish/cuttlefish.go index d17bd78f2..94610ed4e 100644 --- a/vm/cuttlefish/cuttlefish.go +++ b/vm/cuttlefish/cuttlefish.go @@ -28,7 +28,7 @@ const ( ) func init() { - vmimpl.Register("cuttlefish", ctor, true, true) + vmimpl.Register("cuttlefish", ctor, true) } type Pool struct { -- cgit mrf-deployment