You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I have a suggestion, in case is worth to consider
I've been having some annoying issues with one mapping , from user object into LDAP.
When I was trying to use either the "Sample Source" on the properties page or the "Single Record Reconciliation" on the behaviours page I was getting an "Internal Error", but nothing at all in the logs.
It tooks me a while to understand that the issue seems to be on the file
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Hi, I have a suggestion, in case is worth to consider
I've been having some annoying issues with one mapping , from user object into LDAP.
When I was trying to use either the "Sample Source" on the properties page or the "Single Record Reconciliation" on the behaviours page I was getting an "Internal Error", but nothing at all in the logs.
It tooks me a while to understand that the issue seems to be on the file
ui/admin/default/org/forgerock/openidm/ui/SingleRecordReconciliationView.js
( possibly )
In the code
The autocompleteProps wll end up empty if the first attribute of the mapping does not have a source !!!!
That will trigger very annoying internal error becaause when you try to do a Sample source the query will be
...managed.user?_sortKeys=&_pageSize=10&_queryFilter=........
This _sortKeys=& is the things that causes the internal error.
and I wonder that if instead the line
var autocompleteProps = _.pluck(this.data.mapping.properties, "source").slice(0, this.getNumRepresentativeProps());
Could a different line that searches the "first source" available, instead of the first attribute , which, could be without "Source" part.
All reactions