pull/1145/head
kompotkot 2024-12-12 12:25:46 +00:00
rodzic 0dee89fb22
commit 615530516b
2 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -41,7 +41,7 @@ If `access-id` not specified, all user accesses will be deleted.
### users
```bash
nodebalancer access list --access-token "<bugout_access_token>" | jq .
./nodebalancer access list --access-token "<bugout_access_token>" | jq .
```
This command will return a list of bugout resources of registered users to access node balancer.
@ -71,7 +71,7 @@ This command will return a list of bugout resources of registered users to acces
### server
```bash
nodebalancer server -host 0.0.0.0 -port 8544 -healthcheck
./nodebalancer server --host 0.0.0.0 --port 8544 --healthcheck
```
Flag `--healthcheck` will execute background process to ping-pong available nodes to keep their status and current block number.

Wyświetl plik

@ -482,7 +482,7 @@ var CommonCommands = []*cli.Command{
}
}
fmt.Printf("There are %d accesses to modify:\n", len(modifiedClientAccesses))
fmt.Printf("There are %d accesses to modify\n", len(modifiedClientAccesses))
for _, a := range modifiedClientAccesses {
fmt.Printf(" - resource ID %s with access ID %s\n", a.ResourceID, a.ClientResourceData.AccessID)
}