diff --git a/grouper-midpoint/README.md b/grouper-midpoint/README.md index d969d59..1bd0b58 100644 --- a/grouper-midpoint/README.md +++ b/grouper-midpoint/README.md @@ -19,9 +19,7 @@ There are the following containers: All files needed to build and compose these containers are in `mp-gr` directory. -TODO ... - TODO: - Grouper -> midPoint via MQ - - groups for courses are not created automatically on first import (why?) + - performance of initial import from courses (500ms per user) - fix hardcoded password for grouper loader LDAP diff --git a/grouper-midpoint/mp-gr/sources/container_files/seed-data/persons.sql b/grouper-midpoint/mp-gr/sources/container_files/seed-data/persons.sql index e5febe7..28719d2 100644 --- a/grouper-midpoint/mp-gr/sources/container_files/seed-data/persons.sql +++ b/grouper-midpoint/mp-gr/sources/container_files/seed-data/persons.sql @@ -15,7 +15,7 @@ CREATE TABLE SIS_AFFILIATIONS ( ); INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jsmith','Smith','Joe','John Smith',NULL,NULL); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('banderson',NULL,'Bob','Bob Anderson',NULL,NULL); +INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('banderson','Anderson','Bob','Bob Anderson',NULL,NULL); INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kwhite','White','Karl','Karl White','Law','kwhite@example.edu'); INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kwhite','member'); INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kwhite','student');