Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for (some) pdf reports not being send #1089

Merged
merged 1 commit into from
Dec 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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