[#1563] config: Replace 127.0.0.1 with localhost

Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
This commit is contained in:
Evgenii Stratonikov 2022-07-13 11:58:10 +03:00 committed by fyrchik
parent 4a8dfd0ce4
commit 12dc5c3395
14 changed files with 26 additions and 26 deletions

View file

@ -41,8 +41,8 @@ const (
)
const (
defaultControlEndpoint = "127.0.0.1:8090"
defaultDataEndpoint = "127.0.0.1"
defaultControlEndpoint = "localhost:8090"
defaultDataEndpoint = "localhost"
)
// RootCmd is a root command of config section.