Skip to content

Commit

Permalink
Fix config example typo
Browse files Browse the repository at this point in the history
  • Loading branch information
TheByronHimes committed Jan 23, 2025
1 parent c9b978b commit 51dfdad
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion services/dcs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ The service requires the following configuration parameters:
Examples:

```json
"ifrsDbVersions"
"dcsDbVersions"
```


Expand Down
2 changes: 1 addition & 1 deletion services/dcs/config_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@
"db_version_collection": {
"description": "The name of the collection containing DB version information for this service",
"examples": [
"ifrsDbVersions"
"dcsDbVersions"
],
"title": "Db Version Collection",
"type": "string"
Expand Down
2 changes: 1 addition & 1 deletion services/dcs/src/dcs/migration_logic/_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class MigrationConfig(MongoDbConfig):
db_version_collection: str = Field(
...,
description="The name of the collection containing DB version information for this service",
examples=["ifrsDbVersions"],
examples=["dcsDbVersions"],
)
migration_wait_sec: int = Field(
...,
Expand Down

0 comments on commit 51dfdad

Please sign in to comment.