mirror of
https://github.com/rasilon/ujetl.git
synced 2026-04-11 10:29:29 +00:00
Fix producer thread name, for logging and monitoring.
This commit is contained in:
parent
06c64d499f
commit
01310bfca4
3 changed files with 3 additions and 3 deletions
|
|
@ -76,7 +76,7 @@ public class Job extends Thread {
|
|||
public Producer(ResultSet src,BlockingQueue q) {
|
||||
this.src = src;
|
||||
this.q = q;
|
||||
this.setName(String.format("%s-%s-Consumer",jobName,name));
|
||||
this.setName(String.format("%s-%s-Producer",jobName,name));
|
||||
}
|
||||
public void run() {
|
||||
try {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue