Skip to content

Commit 0e65779

Browse files
cleanup
1 parent e9d3769 commit 0e65779

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

service/controllers.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,6 @@ def get(self):
407407
json_response = {
408408
'keys': [jwk_json]
409409
}
410-
logger.debug(f'Got JWKS keys: {json.dumps(json_response, indent=4)}')
411410
return jsonify(json_response) #utils.ok(result=metadata, msg='OAuth OIDC metadata retrieved successfully.')
412411

413412

@@ -466,7 +465,6 @@ def check_client(use_session=False):
466465
logout()
467466
raise errors.ResourceError("Required query parameter client_id missing.")
468467
# make sure the client exists and the redirect_uri matches
469-
logger.debug(f"checking for client with id: {client_id} in tenant {tenant_id}")
470468
client = Client.query.filter_by(tenant_id=tenant_id, client_id=client_id).first()
471469
if not client:
472470
logout()

0 commit comments

Comments
 (0)