From dev-return-72669-archive-asf-public=cust-asf.ponee.io@zookeeper.apache.org Sat Sep 1 00:42:04 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 2F77B180663 for ; Sat, 1 Sep 2018 00:42:04 +0200 (CEST) Received: (qmail 19258 invoked by uid 500); 31 Aug 2018 22:42:03 -0000 Mailing-List: contact dev-help@zookeeper.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@zookeeper.apache.org Delivered-To: mailing list dev@zookeeper.apache.org Received: (qmail 19245 invoked by uid 99); 31 Aug 2018 22:42:03 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 31 Aug 2018 22:42:03 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id BB3AB1A194B for ; Fri, 31 Aug 2018 22:42:02 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -110.301 X-Spam-Level: X-Spam-Status: No, score=-110.301 tagged_above=-999 required=6.31 tests=[ENV_AND_HDR_SPF_MATCH=-0.5, RCVD_IN_DNSWL_MED=-2.3, SPF_PASS=-0.001, USER_IN_DEF_SPF_WL=-7.5, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id aZdTWV_xxngL for ; Fri, 31 Aug 2018 22:42:02 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with ESMTP id 7DDDF5F42E for ; Fri, 31 Aug 2018 22:42:01 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id DB330E2613 for ; Fri, 31 Aug 2018 22:42:00 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id 493B226B5C for ; Fri, 31 Aug 2018 22:42:00 +0000 (UTC) Date: Fri, 31 Aug 2018 22:42:00 +0000 (UTC) From: "Enrico Olivelli (JIRA)" To: dev@zookeeper.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (ZOOKEEPER-3136) Reduce log in ClientBase in case of ConnectException MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/ZOOKEEPER-3136?page=3Dcom.atla= ssian.jira.plugin.system.issuetabpanels:all-tabpanel ] Enrico Olivelli updated ZOOKEEPER-3136: --------------------------------------- Summary: Reduce log in ClientBase in case of ConnectException (was: Re= duce log in ClientBase in case of "ConnectException") > Reduce log in ClientBase in case of ConnectException > ---------------------------------------------------- > > Key: ZOOKEEPER-3136 > URL: https://issues.apache.org/jira/browse/ZOOKEEPER-3136 > Project: ZooKeeper > Issue Type: Task > Components: tests > Reporter: Enrico Olivelli > Assignee: Enrico Olivelli > Priority: Minor > > While running tests you will always see spammy log lines like the ones be= low. > As we are expecting the server to be up, it is not useful to log such sta= cktraces. > The patch simply reduce the log in this specific case, because it adds no= value and it is very annoying. > =C2=A0 > {code:java} > =C2=A0=C2=A0=C2=A0=C2=A0 [junit] 2018-08-31 23:31:49,173 [myid:] - INFO= =C2=A0 [main:ClientBase@292] - server 127.0.0.1:11222 not up > =C2=A0=C2=A0=C2=A0 [junit] java.net.ConnectException: Connection refused = (Connection refused) > =C2=A0=C2=A0=C2=A0 [junit] =C2=A0=C2=A0 =C2=A0at java.net.PlainSocketImpl= .socketConnect(Native Method) > =C2=A0=C2=A0=C2=A0 [junit] =C2=A0=C2=A0 =C2=A0at java.net.AbstractPlainSo= cketImpl.doConnect(AbstractPlainSocketImpl.java:350) > =C2=A0=C2=A0=C2=A0 [junit] =C2=A0=C2=A0 =C2=A0at java.net.AbstractPlainSo= cketImpl.connectToAddress(AbstractPlainSocketImpl.java:206) > =C2=A0=C2=A0=C2=A0 [junit] =C2=A0=C2=A0 =C2=A0at java.net.AbstractPlainSo= cketImpl.connect(AbstractPlainSocketImpl.java:188) > =C2=A0=C2=A0=C2=A0 [junit] =C2=A0=C2=A0 =C2=A0at java.net.SocksSocketImpl= .connect(SocksSocketImpl.java:392) > =C2=A0=C2=A0=C2=A0 [junit] =C2=A0=C2=A0 =C2=A0at java.net.Socket.connect(= Socket.java:589) > =C2=A0=C2=A0=C2=A0 [junit] =C2=A0=C2=A0 =C2=A0at org.apache.zookeeper.cli= ent.FourLetterWordMain.send4LetterWord(FourLetterWordMain.java:101) > =C2=A0=C2=A0=C2=A0 [junit] =C2=A0=C2=A0 =C2=A0at org.apache.zookeeper.cli= ent.FourLetterWordMain.send4LetterWord(FourLetterWordMain.java:71) > =C2=A0=C2=A0=C2=A0 [junit] =C2=A0=C2=A0 =C2=A0at org.apache.zookeeper.tes= t.ClientBase.waitForServerUp(ClientBase.java:285) > =C2=A0=C2=A0=C2=A0 [junit] =C2=A0=C2=A0 =C2=A0at org.apache.zookeeper.tes= t.ClientBase.waitForServerUp(ClientBase.java:276) > {code} > =C2=A0 -- This message was sent by Atlassian JIRA (v7.6.3#76005)