Skip to content

Commit f762ffd

Browse files
committed
Modify thread priority of thumbly-image-processor-operator
1 parent 26addb2 commit f762ffd

File tree

1 file changed

+1
-1
lines changed
  • thumbly-image-processor/src/main/java/org/code13k/thumbly/image/processor

1 file changed

+1
-1
lines changed

thumbly-image-processor/src/main/java/org/code13k/thumbly/image/processor/Operator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ public void run() {
148148
}
149149
};
150150
Thread thread = new Thread(runnable);
151-
thread.setPriority(Thread.MIN_PRIORITY);
151+
thread.setPriority(Thread.MAX_PRIORITY);
152152
thread.setName("thumbly-image-processor-operator-" + index);
153153
thread.start();
154154
}

0 commit comments

Comments
 (0)