From e2be9dbfcc04a30a7f3a039979dd0035d5670c1e Mon Sep 17 00:00:00 2001 From: Chad Redman Date: Mon, 5 Aug 2024 02:26:42 -0400 Subject: [PATCH] Get /status_grouper/status working --- base/container_files/httpd/grouper-www.conf | 1 + ex101/ex101.1.1/container_files/postgres/sis_programs.sql | 2 +- ex201/ex201.end/container_files/grouper/bootstrap.gsh | 6 +++--- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/base/container_files/httpd/grouper-www.conf b/base/container_files/httpd/grouper-www.conf index ffaf821..61c5974 100644 --- a/base/container_files/httpd/grouper-www.conf +++ b/base/container_files/httpd/grouper-www.conf @@ -5,6 +5,7 @@ ProxyPass /grouper ajp://localhost:8009/grouper timeout=2400 ProxyPass /grouper-ws ajp://localhost:8009/grouper timeout=2400 ProxyPass /grouper-ws-scim ajp://localhost:8009/grouper timeout=2400 ProxyPass /idp ajp://localhost:8009/idp timeout=2400 +ProxyPass /status_grouper/status ajp://localhost:8009/grouper/status timeout=2401 AuthType shibboleth diff --git a/ex101/ex101.1.1/container_files/postgres/sis_programs.sql b/ex101/ex101.1.1/container_files/postgres/sis_programs.sql index 823278c..82fc900 100644 --- a/ex101/ex101.1.1/container_files/postgres/sis_programs.sql +++ b/ex101/ex101.1.1/container_files/postgres/sis_programs.sql @@ -1790,7 +1790,7 @@ insert into sis_stu_programs (person_id, program_idx, acad_career_id, grad_year_ /* make the original term ranges more relevant to the current year -- march 2024 should have 2023 (recent grads) and active classes 2024-2027 */ -update sis_stu_programs set grad_year_expected = grad_year_expected::smallint + 2 where grad_year_expected is not null; +update sis_stu_programs set grad_year_expected = grad_year_expected::smallint + 3 where grad_year_expected is not null; /* select count(*), grad_year_expected from sis_stu_programs group by 2 order by 2; diff --git a/ex201/ex201.end/container_files/grouper/bootstrap.gsh b/ex201/ex201.end/container_files/grouper/bootstrap.gsh index 5cbf969..7c32f2b 100644 --- a/ex201/ex201.end/container_files/grouper/bootstrap.gsh +++ b/ex201/ex201.end/container_files/grouper/bootstrap.gsh @@ -12,10 +12,10 @@ import java.text.SimpleDateFormat; /***** START Defaults that may need to be changed for each class *****/ -Range ACTIVE_CLASS_YEARS = 2024..2027 -int RECENT_GRADUATE_YEAR = 2023 +Range ACTIVE_CLASS_YEARS = 2025..2028 +int RECENT_GRADUATE_YEAR = 2024 java.util.Calendar cal = Calendar.getInstance() -cal.set(2024, Calendar.MARCH, 31, 17, 0, 0) +cal.set(2024, Calendar.DECEMBER, 31, 17, 0, 0) java.util.Date RECENT_GRAD_END_DATE = cal.time /***** END Defaults that may need to be changed for each class *****/