Skip to content

Commit

Permalink
faster modqueue handling
Browse files Browse the repository at this point in the history
  • Loading branch information
firestar committed Jan 8, 2024
1 parent b95c3b1 commit 533fdf5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = 'com.nucleodb'
version = '1.14.7'
version = '1.14.8'

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public void run() {
}
try {
if(overkillCheck) {
Thread.sleep(100);
Thread.sleep(5L);
overkillCheck = false;
} else {
synchronized (modqueue) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public void run() {
}
try {
if(overkillCheck) {
Thread.sleep(100);
Thread.sleep(5L);
overkillCheck = false;
} else {
synchronized (modqueue) {
Expand Down

0 comments on commit 533fdf5

Please sign in to comment.