From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTP id 93D45273B5 for ; Wed, 28 Aug 2019 20:51:58 -0400 (EDT) Received: from turing.freelists.org ([127.0.0.1]) by localhost (turing.freelists.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 2N_1KDZeYut4 for ; Wed, 28 Aug 2019 20:51:58 -0400 (EDT) Received: from smtp54.i.mail.ru (smtp54.i.mail.ru [217.69.128.34]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTPS id 5395E273B3 for ; Wed, 28 Aug 2019 20:51:58 -0400 (EDT) Date: Thu, 29 Aug 2019 03:51:42 +0300 From: Alexander Turenko Subject: [tarantool-patches] Re: [PATCH v2 2/2] say: take getaddrinfo() errors into account Message-ID: <20190829005142.7o6drh2wdpe5fj2b@tkn_work_nb> References: <3603f7507651b37ddd549a8c247709cc7ff43f44.1561469272.git.roman.habibov@tarantool.org> <20190723145249.5xwc2td6omphwwzw@tkn_work_nb> <20190828213431.3yd4kwcahe2oizgs@tkn_work_nb> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20190828213431.3yd4kwcahe2oizgs@tkn_work_nb> Sender: tarantool-patches-bounce@freelists.org Errors-to: tarantool-patches-bounce@freelists.org Reply-To: tarantool-patches@freelists.org List-Help: List-Unsubscribe: List-software: Ecartis version 1.0.0 List-Id: tarantool-patches List-Subscribe: List-Owner: List-post: List-Archive: To: Roman Khabibov Cc: tarantool-patches@freelists.org > Linux: > > | SystemError getaddrinfo: Temporary failure in name resolution: Input/output error > | SystemError syslog logger: Input/output error: Input/output error > | failed to initialize logging subsystem > > gai_strerror() message corresponds to EAI_AGAIN. > > Mac OS: > > | SystemError getaddrinfo: nodename nor servname provided, or not known: Input/output error > | SystemError syslog logger: Input/output error: Input/output error > | failed to initialize logging subsystem > > gai_strerror() message corresponds to EAI_NONAME. I see now that Linux also can give EAI_NONAME in the case. It seems it depends on network conditions. Anyway, let's check for both.