From commits-return-14635-apmail-kafka-commits-archive=kafka.apache.org@kafka.apache.org Mon Jun 1 20:50:38 2020 Return-Path: X-Original-To: apmail-kafka-commits-archive@www.apache.org Delivered-To: apmail-kafka-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by minotaur.apache.org (Postfix) with SMTP id 3530219C51 for ; Mon, 1 Jun 2020 20:50:38 +0000 (UTC) Received: (qmail 17408 invoked by uid 500); 1 Jun 2020 20:50:37 -0000 Delivered-To: apmail-kafka-commits-archive@kafka.apache.org Received: (qmail 17384 invoked by uid 500); 1 Jun 2020 20:50:37 -0000 Mailing-List: contact commits-help@kafka.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@kafka.apache.org Delivered-To: mailing list commits@kafka.apache.org Received: (qmail 17375 invoked by uid 99); 1 Jun 2020 20:50:37 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 01 Jun 2020 20:50:37 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 3327D81F29; Mon, 1 Jun 2020 20:50:37 +0000 (UTC) Date: Mon, 01 Jun 2020 20:50:28 +0000 To: "commits@kafka.apache.org" Subject: [kafka] 02/03: KAFKA-8417: Remove redundant network definition --net=host when starting testing docker containers (#6797) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit From: vvcephei@apache.org In-Reply-To: <159104462064.3265.569239084949955451@gitbox.apache.org> References: <159104462064.3265.569239084949955451@gitbox.apache.org> X-Git-Host: gitbox.apache.org X-Git-Repo: kafka X-Git-Refname: refs/heads/1.0 X-Git-Reftype: branch X-Git-Rev: 1830d489fd739a0d5458ac6f384d6ca8171837cd X-Git-NotificationType: diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated Message-Id: <20200601205037.3327D81F29@gitbox.apache.org> This is an automated email from the ASF dual-hosted git repository. vvcephei pushed a commit to branch 1.0 in repository https://gitbox.apache.org/repos/asf/kafka.git commit 1830d489fd739a0d5458ac6f384d6ca8171837cd Author: Konstantine Karantasis AuthorDate: Thu May 23 11:46:10 2019 -0700 KAFKA-8417: Remove redundant network definition --net=host when starting testing docker containers (#6797) Reviewers: Colin P. McCabe --- tests/docker/ducker-ak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/docker/ducker-ak b/tests/docker/ducker-ak index f7eae49..1b46f1b 100755 --- a/tests/docker/ducker-ak +++ b/tests/docker/ducker-ak @@ -236,7 +236,7 @@ docker_run() { # and mount FUSE filesystems inside the container. We also need it to # run iptables inside the container. must_do -v docker run --privileged \ - -d -t --net=host -h "${node}" --network ducknet \ + -d -t -h "${node}" --network ducknet \ --memory=${docker_run_memory_limit} --memory-swappiness=1 \ -v "${kafka_dir}:/opt/kafka-dev" --name "${node}" -- "${image_name}" }