Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-pimenta-DME authored Nov 16, 2023
2 parents 3ecdc92 + 34005b3 commit b5b2e05
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions identityutils/keycloak_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
logger = logging.getLogger('um-identity-service')



class KeycloakClient:

def __init__(self, server_url, realm, username, password):
Expand Down Expand Up @@ -505,7 +506,5 @@ def delete_resource_permissions(self, client_id, permission_id):
)

def create_client(self, payload, skip_exists=True):
data_raw = self.keycloak_admin.create_client(payload=payload, skip_exists=skip_exists)
return raise_error_from_response(
data_raw
)
return self.keycloak_admin.create_client(payload=payload, skip_exists=skip_exists)

0 comments on commit b5b2e05

Please sign in to comment.