From 6acd2fc77cd73b6c76a466e276914b043de82bff Mon Sep 17 00:00:00 2001 From: Pavol Mederly Date: Tue, 21 Aug 2018 01:49:27 +0200 Subject: [PATCH] Do minor fixes (readme, SQL seed data) --- grouper-midpoint/README.md | 4 +--- .../mp-gr/sources/container_files/seed-data/persons.sql | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) 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');