Skip to content

Commit

Permalink
Increase session timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
oharsta committed Nov 11, 2023
1 parent 3c8cf5b commit 694b165
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.surfnet</groupId>
<artifactId>student-mobility-broker</artifactId>
<version>0.2.10</version>
<version>0.2.11</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion client/src/locale/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.",
Expand Down
2 changes: 1 addition & 1 deletion client/src/locale/nl.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.",
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>org.surfnet</groupId>
<artifactId>student-mobility-broker</artifactId>
<version>0.2.10</version>
<version>0.2.11</version>
<name>student-mobility-broker</name>
<description>student-mobility-broker-app</description>
<packaging>pom</packaging>
Expand Down
2 changes: 1 addition & 1 deletion server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.surfnet</groupId>
<artifactId>student-mobility-broker</artifactId>
<version>0.2.10</version>
<version>0.2.11</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion server/src/main/java/broker/HttpSessionConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 694b165

Please sign in to comment.