From 3a71ac78b09f1489b6cc02d92e13d9d10398ca5b Mon Sep 17 00:00:00 2001 From: Alexander VanTol Date: Fri, 4 Aug 2023 15:38:18 -0500 Subject: [PATCH 1/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 33f6ce091..3af9a575d 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ only trusted entities to enter. Fence is a core service of the Gen3 stack that has multiple capabilities: 1. Act as an [auth broker](#auth-broker) to integrate with one or more [IdPs](#IdP) and provide downstream authentication and authorization for Gen3 services. 2. [Manage tokens](#token-management). -3. Act as an [OIDC provider](#oidc--oauth2) to support external applications to use Gen3 services. +3. Act as an [OIDC provider](#oidc--oauth2) to support external applications to use Gen3 services 4. [Issue short lived, cloud native credentials to access data in various cloud storage services](#accessing-data) From 4f5eb9c3909d0ab1da8e10c67789cdf8cb7d2448 Mon Sep 17 00:00:00 2001 From: Alexander VanTol Date: Fri, 4 Aug 2023 15:49:30 -0500 Subject: [PATCH 2/2] Update __init__.py --- fence/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fence/__init__.py b/fence/__init__.py index 2d44e33f2..6549666ab 100755 --- a/fence/__init__.py +++ b/fence/__init__.py @@ -17,7 +17,7 @@ from azure.core.exceptions import ResourceNotFoundError from urllib.parse import urlparse -# Can't read config yet. Just set to debug for now, else no handlers. +# Can't read config yet. Just set to debug for now, else no handlers # Later, in app_config(), will actually set level based on config logger = get_logger(__name__, log_level="debug")