Skip to content

Commit

Permalink
Merge pull request #84 from getdozer/correct-var-name
Browse files Browse the repository at this point in the history
fix: correct name of default_max_num_records
  • Loading branch information
chubei authored Nov 30, 2023
2 parents f87ce1f + 1b43bd8 commit c263b1e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/configuration/other.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Other Settings

## API Configuration
The `api` section of the Dozer configuration specifies how different types of APIs are set up and interact with other services. This section is organized into three main blocks, each corresponding to a specific type of API: `rest`, `grpc`, and `app_grpc`. Additionally, there's a `api_security` block which designates the security type to be applied across these API interfaces. You can also configure the default limit of records returned from queries using the `default_max_records_num` parameter.
The `api` section of the Dozer configuration specifies how different types of APIs are set up and interact with other services. This section is organized into three main blocks, each corresponding to a specific type of API: `rest`, `grpc`, and `app_grpc`. Additionally, there's a `api_security` block which designates the security type to be applied across these API interfaces. You can also configure the default limit of records returned from queries using the `default_max_num_records` parameter.

Here's a summarized view of the configuration structure:

Expand All @@ -15,7 +15,7 @@ api:
...
api_security: !Jwt
jwt_token
default_max_records_num: 50
default_max_num_records: 50
```
### API Security
Expand Down Expand Up @@ -88,4 +88,4 @@ The `app_grpc` section configures the App gRPC API server. This server is used f

### Default Query Limit

The `default_max_records_num` is an `Integer` parameter that specifies the default limit of records returned from queries. The default value is 50.
The `default_max_num_records` is an `Integer` parameter that specifies the default limit of records returned from queries. The default value is 50.

0 comments on commit c263b1e

Please sign in to comment.