diff --git a/Pipfile.lock b/Pipfile.lock index d17ea1d7..c9444d0e 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -1060,11 +1060,12 @@ }, "werkzeug": { "hashes": [ - "sha256:507e811ecea72b18a404947aded4b3390e1db8f826b494d76550ef45bb3b1dcc", - "sha256:90a285dc0e42ad56b34e696398b8122ee4c681833fb35b8334a095d82c56da10" + "sha256:097e5bfda9f0aba8da6b8545146def481d06aa7d3266e7448e2cccf67dd8bd18", + "sha256:fc9645dc43e03e4d630d23143a04a7f947a9a3b5727cd535fdfe155a17cc48c8" ], + "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==3.0.1" + "version": "==3.0.3" } }, "develop": { diff --git a/_infra/helm/secure-message/Chart.yaml b/_infra/helm/secure-message/Chart.yaml index bf4f1ff6..2940c7f7 100644 --- a/_infra/helm/secure-message/Chart.yaml +++ b/_infra/helm/secure-message/Chart.yaml @@ -14,8 +14,8 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. -version: 2.1.69 +version: 2.1.70 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. -appVersion: 2.1.69 +appVersion: 2.1.70 diff --git a/config.py b/config.py index 4e6748b0..a1782dae 100644 --- a/config.py +++ b/config.py @@ -70,7 +70,7 @@ class DevConfig(Config): # UAA CLIENT_ID = os.getenv("CLIENT_ID", "secure_message") - CLIENT_SECRET = os.getenv("CLIENT_SECRET", "password") + CLIENT_SECRET = os.getenv("CLIENT_SECRET", "nearest.location.roll.change") UAA_URL = os.getenv("UAA_URL", "http://localhost:9080") USE_UAA = int(os.getenv("USE_UAA", 1)) diff --git a/secure_message/exception/exceptions.py b/secure_message/exception/exceptions.py index e84a81f6..d3ee4577 100644 --- a/secure_message/exception/exceptions.py +++ b/secure_message/exception/exceptions.py @@ -8,7 +8,6 @@ class MessageSaveException(HTTPException): - """This exception is used when the service fails to save a secure message""" code = 500 diff --git a/secure_message/resources/health.py b/secure_message/resources/health.py index 08c2f5f1..a218f26c 100644 --- a/secure_message/resources/health.py +++ b/secure_message/resources/health.py @@ -11,7 +11,6 @@ class Health(Resource): - """Rest endpoint to provide application general health""" @staticmethod @@ -20,7 +19,6 @@ def get(): class DatabaseHealth(Resource): - """Rest endpoint to provide application database health""" @staticmethod @@ -29,7 +27,6 @@ def get(): class HealthDetails(Resource): - """Rest endpoint to provide application details""" @staticmethod diff --git a/secure_message/resources/info.py b/secure_message/resources/info.py index 9465f075..78f5c8f2 100644 --- a/secure_message/resources/info.py +++ b/secure_message/resources/info.py @@ -10,7 +10,6 @@ class Info(Resource): - """Rest endpoint to provide application information""" @staticmethod diff --git a/secure_message/validation/domain.py b/secure_message/validation/domain.py index c8fe5f49..d01f6129 100644 --- a/secure_message/validation/domain.py +++ b/secure_message/validation/domain.py @@ -19,7 +19,6 @@ class Message: - """Class to hold message attributes""" def __init__( @@ -65,7 +64,6 @@ def __eq__(self, other): class MessageSchema(Schema): - """Class to marshal JSON to Message""" msg_id = fields.Str(allow_none=True) diff --git a/secure_message/validation/thread.py b/secure_message/validation/thread.py index fc7cbb90..21478663 100644 --- a/secure_message/validation/thread.py +++ b/secure_message/validation/thread.py @@ -7,7 +7,6 @@ class ThreadPatch(Schema): - """Class to marshal JSON to Message""" category = fields.Str()