mirror of
https://github.com/rasilon/ujetl.git
synced 2026-04-11 18:39:30 +00:00
Fix producer thread name, for logging and monitoring.
This commit is contained in:
parent
06c64d499f
commit
f3e4124ef7
3 changed files with 3 additions and 3 deletions
2
pom.xml
2
pom.xml
|
|
@ -6,7 +6,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/ma
|
||||||
<groupId>com.rasilon.ujetl</groupId>
|
<groupId>com.rasilon.ujetl</groupId>
|
||||||
<artifactId>CopyingApp</artifactId>
|
<artifactId>CopyingApp</artifactId>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
<version>2.1.6</version>
|
<version>2.1.7</version>
|
||||||
<name>uJETL</name>
|
<name>uJETL</name>
|
||||||
<url>https://github.com/rasilon/ujetl</url>
|
<url>https://github.com/rasilon/ujetl</url>
|
||||||
<properties>
|
<properties>
|
||||||
|
|
|
||||||
|
|
@ -76,7 +76,7 @@ public class Job extends Thread {
|
||||||
public Producer(ResultSet src,BlockingQueue q) {
|
public Producer(ResultSet src,BlockingQueue q) {
|
||||||
this.src = src;
|
this.src = src;
|
||||||
this.q = q;
|
this.q = q;
|
||||||
this.setName(String.format("%s-%s-Consumer",jobName,name));
|
this.setName(String.format("%s-%s-Producer",jobName,name));
|
||||||
}
|
}
|
||||||
public void run() {
|
public void run() {
|
||||||
try {
|
try {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
Summary: Java app to facilitate moving data between databases.
|
Summary: Java app to facilitate moving data between databases.
|
||||||
Name: uJETL
|
Name: uJETL
|
||||||
Version: 2.1.6
|
Version: 2.1.7
|
||||||
Release: 1
|
Release: 1
|
||||||
Group: Applications/Database
|
Group: Applications/Database
|
||||||
License: All rights reserved.
|
License: All rights reserved.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue