Skip to content

Commit

Permalink
neofs-cli: netmap netinfo add documentation about neofs network configs
Browse files Browse the repository at this point in the history
Using the `neofs-adm morph set-config --force` command, unknown
parameters can be set. By calling
`neofs-cli netmap netinfo`, users can check the set parameters, and
they are printed in HEX.

Closes #2555.

Signed-off-by: Ekaterina Pavlova <[email protected]>
  • Loading branch information
AliceInHunterland committed Sep 21, 2023
1 parent 485d55e commit fe69589
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Changelog for NeoFS Node
## [Unreleased]

### Fixed
- `neofs-cli netmap netinfo` documentation (#2555)

### Changed
- FSTree storage now uses more efficient and safe temporary files under Linux (#2566)
Expand Down
5 changes: 3 additions & 2 deletions cmd/neofs-cli/modules/netmap/netinfo.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ import (
var netInfoCmd = &cobra.Command{
Use: "netinfo",
Short: "Get information about NeoFS network",
Long: "Get information about NeoFS network",
Args: cobra.NoArgs,
Long: `Get information about NeoFS network.
Unknown configuration settings are displayed in hexadecimal format.`,
Args: cobra.NoArgs,
Run: func(cmd *cobra.Command, _ []string) {
ctx, cancel := commonflags.GetCommandContext(cmd)
defer cancel()
Expand Down

0 comments on commit fe69589

Please sign in to comment.