Skip to content

Commit

Permalink
Update 1.2.47
Browse files Browse the repository at this point in the history
  • Loading branch information
Fox2Code committed Jul 2, 2024
1 parent 2b4aeec commit 933840b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ public void run() {
WatchdogTimer watchdogTimer = watchdogTimerRef.get();
if (watchdogTimer != null && watchdogTimer.isEnabled()) {
long computingFor = watchdogTimer.getComputingFor();
if (computingFor / T1_SECONDS == 10L) {
if (computingFor / T1_SECONDS == 20L) {
needDump = true;
if (watchdogTimer.isEssential()) {
exit = true;
}
} else if (computingFor / T1_SECONDS == 5L) {
} else if (computingFor / T1_SECONDS == 10L) {
needDump = true;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public void heartbeat() {
}

public void megaHeartbeat() {
this.megaLastCheck = System.currentTimeMillis() + 10000L;
this.megaLastCheck = System.currentTimeMillis() + 20000L;
}

public boolean isEnabled() {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ org.gradle.parallel=true
org.gradle.jvmargs=-Xmx1024m -XX:-UseGCOverheadLimit -Dfile.encoding=UTF-8

# FoxLoader properties
foxloader.version=1.2.46
foxloader.version=1.2.47
foxloader.lastReIndevTransformerChanges=1.2.39
# https://www.jitpack.io/#com.fox2code/FoxLoader

Expand Down

0 comments on commit 933840b

Please sign in to comment.