Skip to content

Commit

Permalink
exclude error log4j
Browse files Browse the repository at this point in the history
  • Loading branch information
leizhiyuan committed Nov 7, 2018
1 parent 0bc8dff commit 596daa6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
6 changes: 6 additions & 0 deletions test/test-integration/pom.xml
Expand Up @@ -131,6 +131,12 @@
<groupId>com.alipay.sofa</groupId>
<artifactId>sofa-rpc-registry-zk</artifactId>
<version>${project.parent.version}</version>
<exclusions>
<exclusion>
<artifactId>log4j</artifactId>
<groupId>log4j</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.alipay.sofa</groupId>
Expand Down
Expand Up @@ -108,7 +108,6 @@ public void run() {
try {
for (int j = 0; j < times; j++) {
final String ok_rest = restServiceRest.get("ok_rest");
System.out.println("rest-xx" + ok_rest);
Assert.assertEquals("serverok_rest", ok_rest);
success.incrementAndGet();
}
Expand Down
Expand Up @@ -176,7 +176,7 @@ public static boolean validateTracerDigest(JSONObject jsonObject, String type, S

private static boolean validateField(String... fileds) {

LOGGER.info("validateField,value=" + fileds);
LOGGER.info("validateField,value=" + StringUtils.join(fileds, ","));

for (String field : fileds) {
if (StringUtils.isEmpty(field)) {
Expand Down

0 comments on commit 596daa6

Please sign in to comment.