From 1860052486431427549a71523ce071e5baa01cc0 Mon Sep 17 00:00:00 2001 From: "sandipsamal117@gmail.com" Date: Thu, 29 Jun 2023 17:23:50 -0400 Subject: [PATCH] merge and version bump to 3.5.2 --- app/config.py | 2 +- app/models/pfdcm.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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):