From d78927dd8d06cbe4d0dadb84bb5f977462dde1fd Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Thu, 29 Jan 2026 15:22:44 +0000 Subject: vm: split OutputCommand to OutputStderr and OutputStdout This will give an even better granularity for filtering out unwanted data. --- vm/proxyapp/proxyappclient.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vm/proxyapp/proxyappclient.go') diff --git a/vm/proxyapp/proxyappclient.go b/vm/proxyapp/proxyappclient.go index 97b799cfb..fb5ab8989 100644 --- a/vm/proxyapp/proxyappclient.go +++ b/vm/proxyapp/proxyappclient.go @@ -483,8 +483,8 @@ func (inst *instance) Run(ctx context.Context, command string) (<-chan vmimpl.Ch name string typ vmimpl.OutputType }{ - {"stdout", vmimpl.OutputCommand}, - {"stderr", vmimpl.OutputCommand}, + {"stdout", vmimpl.OutputStdout}, + {"stderr", vmimpl.OutputStderr}, {"console", vmimpl.OutputConsole}, }) receivedStdoutChunks := wPipes[0] -- cgit mrf-deployment