Skip to content

Commit

Permalink
Merge pull request #491 from bcgov/grad-release
Browse files Browse the repository at this point in the history
Grad release 1.24 TEST
  • Loading branch information
githubmamatha authored Oct 3, 2024
2 parents 058e69f + afd8324 commit ec0d86a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 58 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,7 @@ target/
build/

### VS Code ###
.vscode/
.vscode/

### Local dev ###
**/application-local.yaml
55 changes: 0 additions & 55 deletions api/.gitignore

This file was deleted.

2 changes: 1 addition & 1 deletion api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</parent>
<groupId>ca.bc.gov.educ</groupId>
<artifactId>educ-grad-rule-engine-api</artifactId>
<version>1.8.59</version>
<version>1.8.60</version>
<name>educ-grad-rule-engine-api</name>
<description>Rule Engine API for GRAD team</description>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public RuleData fire() {
String courseSessionDate = sc.getSessionDate() + "/01";
Date temp = null;
try {
temp = toLastDayOfMonth(RuleEngineApiUtils.parseDate(courseSessionDate, "yyyy/MM/dd"));
temp = RuleEngineApiUtils.parseDate(courseSessionDate, "yyyy/MM/dd");
} catch (ParseException e) {
logger.debug(e.getMessage());
}
Expand Down
1 change: 1 addition & 0 deletions api/src/main/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ server:
worker: 128
io: 16
#port: ${HTTP_PORT}
max-http-request-header-size: 20000

#API Documentation
springdoc:
Expand Down

0 comments on commit ec0d86a

Please sign in to comment.