Skip to content
This repository was archived by the owner on Jun 23, 2023. It is now read-only.

Commit e8dbc9d

Browse files
committed
Added a debug message when client db was loaded.
Reflect version in pyproject.toml file.
1 parent 9657834 commit e8dbc9d

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
77

88
[metadata]
99
name = "oidcop"
10-
version = "2.0.0"
10+
version = "2.1.0"
1111
author = "Roland Hedberg"
1212
author_email = "roland@catalogix.se"
1313
description = "Python implementation of an OAuth2 AS and an OIDC Provider"

src/oidcop/endpoint_context.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ def __init__(
134134
logger.debug(f"Loading client db using: {_client_db}")
135135
self.cdb = importer(_client_db["class"])(**_client_db["kwargs"])
136136
else:
137+
logger.debug("No special client db, will use memory based dictionary")
137138
self.cdb = {}
138139

139140
# For my Dev environment

0 commit comments

Comments
 (0)