diff --git a/src/operator/keycloak.ts b/src/operator/keycloak.ts index 70f1235..624df4c 100644 --- a/src/operator/keycloak.ts +++ b/src/operator/keycloak.ts @@ -717,9 +717,6 @@ async function createUser(api: any, user: any) { try { if (existingUser) { console.debug(`User with email ${email} already exists`) - // await doApiCall(errors, `Updating user ${user}`, async () => - // api.users.realmUsersIdPut(keycloakRealm, existingUser.id as string, userConf), - // ) } else { await doApiCall(errors, `Creating user ${username}`, () => api.users.realmUsersPost(keycloakRealm, userConf)) }