From 694b1657a3db9e4a682ad61f5d3ddf3e03aa7f76 Mon Sep 17 00:00:00 2001 From: Okke Harsta Date: Sat, 11 Nov 2023 08:12:02 +0100 Subject: [PATCH] Increase session timeout --- client/pom.xml | 2 +- client/src/locale/en.js | 2 +- client/src/locale/nl.js | 2 +- pom.xml | 2 +- server/pom.xml | 2 +- server/src/main/java/broker/HttpSessionConfig.java | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/client/pom.xml b/client/pom.xml index 24c5e7f..096b743 100644 --- a/client/pom.xml +++ b/client/pom.xml @@ -5,7 +5,7 @@ org.surfnet student-mobility-broker - 0.2.10 + 0.2.11 ../pom.xml diff --git a/client/src/locale/en.js b/client/src/locale/en.js index 21f05d9..d84712a 100644 --- a/client/src/locale/en.js +++ b/client/src/locale/en.js @@ -76,7 +76,7 @@ I18n.translations.en = { }, dateTime: "Date & Time", places: "{{nbr}} places", - backToCatalog: "return to eduXchange" + backToCatalog: "Return" }, landing: { info: "You have landed on the Student Mobility homepage, where you normally only would land after selecting a course in the education catalogue.", diff --git a/client/src/locale/nl.js b/client/src/locale/nl.js index e94d22e..14fd275 100644 --- a/client/src/locale/nl.js +++ b/client/src/locale/nl.js @@ -76,7 +76,7 @@ I18n.translations.nl = { }, dateTime: "Datum", places: "{{nbr}} plaatsen", - backToCatalog: "terug naar eduXchange" + backToCatalog: "Terug" }, landing: { info: "Je bent beland op de homepage van Student Mobility, waar je normaal gesproken pas terechtkomt na het selecteren van een vak of minor in de onderwijscatalogus.", diff --git a/pom.xml b/pom.xml index 51c8d11..483de14 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ org.surfnet student-mobility-broker - 0.2.10 + 0.2.11 student-mobility-broker student-mobility-broker-app pom diff --git a/server/pom.xml b/server/pom.xml index 801bbc8..e1e90b2 100644 --- a/server/pom.xml +++ b/server/pom.xml @@ -6,7 +6,7 @@ org.surfnet student-mobility-broker - 0.2.10 + 0.2.11 ../pom.xml diff --git a/server/src/main/java/broker/HttpSessionConfig.java b/server/src/main/java/broker/HttpSessionConfig.java index 8e2aea1..a45c21f 100644 --- a/server/src/main/java/broker/HttpSessionConfig.java +++ b/server/src/main/java/broker/HttpSessionConfig.java @@ -17,7 +17,7 @@ @Configuration @ConditionalOnProperty(value = "database-session-enabled", havingValue = "true", matchIfMissing = false) @Import(SessionAutoConfiguration.class) -@EnableJdbcHttpSession +@EnableJdbcHttpSession(maxInactiveIntervalInSeconds = 60 * 60 * 8) public class HttpSessionConfig { @Bean