Skip to content

Commit

Permalink
gRPC server reflection: doc
Browse files Browse the repository at this point in the history
  • Loading branch information
eguzki committed Dec 19, 2023
1 parent f31a56b commit d55df6d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ port, that implements the Envoy Rate Limit protocol (v3).

- [**Getting started**](#getting-started)
- [**How it works**](/doc/how-it-works.md)
- [**Configuration**](/doc/server/configuration.md)
- [**Development**](#development)
- [**Testing Environment**](limitador-server/sandbox/README.md)
- [**Kubernetes**](limitador-server/kubernetes/)
Expand Down
2 changes: 2 additions & 0 deletions doc/server/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ Options:
Validates the LIMITS_FILE and exits
-H, --rate-limit-headers <rate_limit_headers>
Enables rate limit response headers [default: NONE] [possible values: NONE, DRAFT_VERSION_03]
--grpc-reflection-service
Enables gRPC server reflection service
-h, --help
Print help
-V, --version
Expand Down
2 changes: 1 addition & 1 deletion limitador-server/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ fn create_config() -> (Configuration, &'static str) {
.long("grpc-reflection-service")
.action(ArgAction::SetTrue)
.display_order(9)
.help("enable gRPC server reflection service"),
.help("Enables gRPC server reflection service"),
)
.subcommand(
Command::new("memory")
Expand Down

0 comments on commit d55df6d

Please sign in to comment.