Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Get /status_grouper/status working
credman committed Aug 5, 2024
1 parent 68534cd commit e2be9db
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions 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

<Location /grouper>
AuthType shibboleth
2 changes: 1 addition & 1 deletion 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;
6 changes: 3 additions & 3 deletions 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<Integer> ACTIVE_CLASS_YEARS = 2024..2027
int RECENT_GRADUATE_YEAR = 2023
Range<Integer> 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 *****/

0 comments on commit e2be9db

Please sign in to comment.