Skip to content

Commit

Permalink
Merge pull request #1089 from kosarko/piwik_pdf_mailer
Browse files Browse the repository at this point in the history
Fix for (some) pdf reports not being send
  • Loading branch information
kosarko authored Dec 4, 2023
2 parents 5be2aa2 + 23d0c9e commit 63511f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions dspace-api/src/main/java/org/dspace/core/Email.java
Original file line number Diff line number Diff line change
Expand Up @@ -701,6 +701,7 @@ private static class BurstDelayQueue extends DelayQueue<DelayedEmail> {
public BurstDelayQueue(int burstSize){
super();
this.burstSize = burstSize;
log.info("BurstDelayQueue initiated with burstSize=" + burstSize);
}

@Override
Expand Down
2 changes: 1 addition & 1 deletion utilities/project_helpers/scripts/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -440,4 +440,4 @@ migrate_databases:
./migrate_db.sh $(UTILITIES_DATABASE_NAME)

generate_piwik_reports:
LC_ALL=en_US.UTF-8 $(DSPACE_BIN) piwik-report-generator
LC_ALL=en_US.UTF-8 JAVA_OPTS="-Xmx2048m -Dfile.encoding=UTF-8 -Ddspace.lr.email.burst=32768" $(DSPACE_BIN) piwik-report-generator

0 comments on commit 63511f3

Please sign in to comment.