From d44376b99705b3ec401531c0d0fa542483179e3a Mon Sep 17 00:00:00 2001 From: Mahdi Dibaiee Date: Thu, 17 Oct 2024 08:58:28 +0100 Subject: [PATCH] consumer: read --flow.network from FLOW_NETWORK env variable --- go/runtime/flow_consumer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/runtime/flow_consumer.go b/go/runtime/flow_consumer.go index e1c8211361..b0f97d75d8 100644 --- a/go/runtime/flow_consumer.go +++ b/go/runtime/flow_consumer.go @@ -39,7 +39,7 @@ type FlowConsumerConfig struct { ControlAPI pb.Endpoint `long:"control-api" env:"CONTROL_API" description:"Address of the control-plane API"` Dashboard pb.Endpoint `long:"dashboard" env:"DASHBOARD" description:"Address of the Estuary dashboard"` DataPlaneFQDN string `long:"data-plane-fqdn" env:"DATA_PLANE_FQDN" description:"Fully-qualified domain name of the data-plane to which this reactor belongs"` - Network string `long:"network" description:"The Docker network that connector containers are given access to. Defaults to the bridge network"` + Network string `long:"network" env:"NETWORK" description:"The Docker network that connector containers are given access to. Defaults to the bridge network"` ProxyRuntimes int `long:"proxy-runtimes" default:"2" description:"The number of proxy connector runtimes that may run concurrently"` TestAPIs bool `long:"test-apis" description:"Enable APIs exclusively used while running catalog tests"` } `group:"flow" namespace:"flow" env-namespace:"FLOW"`