Skip to content

Commit

Permalink
Merge branch 'master' into ERM-3579
Browse files Browse the repository at this point in the history
  • Loading branch information
EthanFreestone authored Mar 6, 2025
2 parents 6dc30b0 + ab95370 commit be03447
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion service/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,9 @@ bootRun {
'-Dspring.output.ansi.enabled=always',
'-noverify',
'-XX:TieredStopAtLevel=1',
'-Xmx1592m')
//'-Xmx1374m'
'-Xmx1592m'
)
sourceResources sourceSets.main
String springProfilesActive = 'spring.profiles.active'
systemProperty springProfilesActive, System.getProperty(springProfilesActive)
Expand Down
2 changes: 1 addition & 1 deletion service/grails-app/conf/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ environments:
filestore:
aws_region: "${aws.region:us-east-1}"
aws_url: "${aws.url}"
aws_secret: "${aws.secret.access.key:none}"
aws_secret: "${aws.secret.access.key}"
aws_bucket: "${aws.bucket:none}"
aws_access_key_id: "${aws.access.key.id:none}"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public class ErmHousekeepingService {
[ 'fileStorage', 'storageEngine', 'String', 'FileStorageEngines', 'LOB' ],
[ 'fileStorage', 'S3Endpoint', 'String', null, default_aws_url ?: 'http://s3_endpoint_host.domain:9000' ],
[ 'fileStorage', 'S3AccessKey', 'String', null, default_aws_access_key_id ?: 'ACCESS_KEY' ],
[ 'fileStorage', 'S3SecretKey', 'String', null, default_aws_secret ?: 'SECRET_KEY' ],
[ 'fileStorage', 'S3SecretKey', 'String', null, default_aws_secret ],
[ 'fileStorage', 'S3BucketName', 'String', null, default_aws_bucket ?: "${tenantId}-shared" ],
[ 'fileStorage', 'S3ObjectPrefix','String', null, "/${tenantId}/agreements/" ],
[ 'fileStorage', 'S3BucketRegion','String', null, default_aws_region ],
Expand Down

0 comments on commit be03447

Please sign in to comment.