Skip to content
Snippets Groups Projects
Commit 0d2858bc authored by Aaron Bauman's avatar Aaron Bauman Committed by Sergio Sánchez
Browse files

Issue #3192905 by AaronBauman: More graceful handling in...

Issue #3192905 by AaronBauman: More graceful handling in GroupUserUpdateProcessor on invalid configuration 
parent 8f57b42e
Branches
Tags
1 merge request!32Issue #3192905: More graceful handling in GroupUserUpdateProcessor on invalid configuration
......@@ -295,6 +295,13 @@ class GroupUserUpdateProcessor {
return;
}
}
if (!$uid) {
$this->logger->error(
'Periodic update: Error creating user @name',
['@name' => $username]
);
return;
}
// User exists and is mapped in authmap.
/** @var \Drupal\user\Entity\User $drupal_account */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment