From ca225fa3e8f9506744d3f8853edca39376716960 Mon Sep 17 00:00:00 2001 From: Alex Vanin Date: Tue, 12 Jan 2021 17:22:04 +0300 Subject: [PATCH] [#304] cmd/neofs-node: Update morph endpoint config indent Now it has symmetric indent for RPC and notification endpoints. ``` morph: rpc_endpoint: - http://seed1.neo.org:20333 - http://seed2.neo.org:20333 - http://seed3.neo.org:20333 notification_endpoint: - ws://seed1.neo.org:20333/ws - ws://seed-go.nspcc.ru:30333/ws dial_timeout: 10s ``` Signed-off-by: Alex Vanin --- cmd/neofs-node/config.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/neofs-node/config.go b/cmd/neofs-node/config.go index 80947eb4..ee496963 100644 --- a/cmd/neofs-node/config.go +++ b/cmd/neofs-node/config.go @@ -63,10 +63,10 @@ const ( cfgReflectService = "grpc.enable_reflect_service" // config keys for cfgMorph - cfgMorphRPCAddress = "morph.endpoint" + cfgMorphRPCAddress = "morph.rpc_endpoint" - cfgMorphNotifyRPCAddress = "morph.notification.endpoint" - cfgMorphNotifyDialTimeout = "morph.notification.dial_timeout" + cfgMorphNotifyRPCAddress = "morph.notification_endpoint" + cfgMorphNotifyDialTimeout = "morph.dial_timeout" // config keys for cfgAccounting cfgAccountingContract = "accounting.scripthash"