diff --git a/app/config.py b/app/config.py index 6b8424d..c1911e0 100644 --- a/app/config.py +++ b/app/config.py @@ -3,7 +3,7 @@ class Settings(BaseSettings): pflink_mongodb: MongoDsn = 'mongodb://localhost:27017' - version: str = "3.5.1" + version: str = "3.5.2" class Auth(BaseSettings): diff --git a/app/models/pfdcm.py b/app/models/pfdcm.py index 7a81d30..2f4261f 100644 --- a/app/models/pfdcm.py +++ b/app/models/pfdcm.py @@ -5,7 +5,7 @@ class PfdcmQuerySchema(BaseModel): """This class represents a `pfdcm` service""" service_name: str = Field(..., title="A string representing the name of a `pfdcm` service", example="PFDCM") - service_address: str = Field(..., title="Service address of the `pfdcm` instance", example="http://localhost:4005") + service_address: str = Field(..., title="Service address of the `pfdcm` instance", example="http://localhost:4005/api/v1") class PfdcmCollectionResponseModel(BaseModel):