1. update gitgnore

2. update log version
pull/4/head
3y 2 years ago
parent b9a20115d7
commit 90df02d8ca

3
.gitignore vendored

@ -4,6 +4,9 @@ target/
!**/src/main/**/target/
!**/src/test/**/target/
### logs ###
logs
### STS ###
.apt_generated
.classpath

@ -29,7 +29,7 @@ public abstract class AbstractDeduplicationBuilder implements Builder {
if (object == null) {
return null;
}
DeduplicationParam deduplicationParam = JSONObject.parseObject(object.getString(CONFIG_PRE + key), DeduplicationParam.class);
DeduplicationParam deduplicationParam = JSONObject.parseObject(object.getString(DEDUPLICATION_CONFIG_PRE + key), DeduplicationParam.class);
if (deduplicationParam == null) {
return null;
}

@ -9,7 +9,7 @@ import com.java3y.austin.domain.TaskInfo;
*/
public interface Builder {
String CONFIG_PRE = "deduplication_";
String DEDUPLICATION_CONFIG_PRE = "deduplication_";
/**
*

@ -86,7 +86,7 @@
<dependency>
<groupId>cn.monitor4all</groupId>
<artifactId>log-record-starter</artifactId>
<version>1.0.4</version>
<version>1.0.4.1</version>
</dependency>
<!--邮件发送-->

Loading…
Cancel
Save