From commits-return-6176-archive-asf-public=cust-asf.ponee.io@openwhisk.apache.org Thu Nov 8 15:53:44 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 A0B49180671 for ; Thu, 8 Nov 2018 15:53:43 +0100 (CET) Received: (qmail 76482 invoked by uid 500); 8 Nov 2018 14:53:42 -0000 Mailing-List: contact commits-help@openwhisk.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@openwhisk.apache.org Delivered-To: mailing list commits@openwhisk.apache.org Received: (qmail 76473 invoked by uid 99); 8 Nov 2018 14:53:42 -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; Thu, 08 Nov 2018 14:53:42 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 128D88572D; Thu, 8 Nov 2018 14:53:42 +0000 (UTC) Date: Thu, 08 Nov 2018 14:53:42 +0000 To: "commits@openwhisk.apache.org" Subject: [incubator-openwhisk-package-kafka] branch master updated: Rename the package into org.apache.openwhisk. (#303) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <154168882201.22782.6262548662768971930@gitbox.apache.org> From: csantanapr@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: incubator-openwhisk-package-kafka X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 1b28f89556c9356ebf9043bdaf78f1dec90f6370 X-Git-Newrev: 80104d619a4bf17f4d7431bb9bfb6eaca5f13d2a X-Git-Rev: 80104d619a4bf17f4d7431bb9bfb6eaca5f13d2a X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. csantanapr pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk-package-kafka.git The following commit(s) were added to refs/heads/master by this push: new 80104d6 Rename the package into org.apache.openwhisk. (#303) 80104d6 is described below commit 80104d619a4bf17f4d7431bb9bfb6eaca5f13d2a Author: Vincent AuthorDate: Thu Nov 8 09:53:37 2018 -0500 Rename the package into org.apache.openwhisk. (#303) --- tests/src/test/scala/system/health/BasicHealthTest.scala | 2 +- tests/src/test/scala/system/packages/MessageHubFeedTests.scala | 2 +- .../src/test/scala/system/packages/MessageHubMultiWorkersTest.scala | 6 +++--- tests/src/test/scala/system/packages/MessageHubProduceTests.scala | 2 +- tests/src/test/scala/system/utils/KafkaUtils.scala | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/tests/src/test/scala/system/health/BasicHealthTest.scala b/tests/src/test/scala/system/health/BasicHealthTest.scala index 949bce6..c83f146 100644 --- a/tests/src/test/scala/system/health/BasicHealthTest.scala +++ b/tests/src/test/scala/system/health/BasicHealthTest.scala @@ -28,7 +28,7 @@ import org.scalatest.{BeforeAndAfterAll, FlatSpec, Inside, Matchers} import spray.json.DefaultJsonProtocol._ import spray.json._ import system.utils.KafkaUtils -import whisk.utils.retry +import org.apache.openwhisk.utils.retry import scala.concurrent.duration.DurationInt import scala.language.postfixOps diff --git a/tests/src/test/scala/system/packages/MessageHubFeedTests.scala b/tests/src/test/scala/system/packages/MessageHubFeedTests.scala index 4263a1d..a847aae 100644 --- a/tests/src/test/scala/system/packages/MessageHubFeedTests.scala +++ b/tests/src/test/scala/system/packages/MessageHubFeedTests.scala @@ -37,7 +37,7 @@ import common.WskProps import common.WskTestHelpers import ActionHelper._ import common.TestUtils.NOT_FOUND -import whisk.utils.retry +import org.apache.openwhisk.utils.retry @RunWith(classOf[JUnitRunner]) class MessageHubFeedTests diff --git a/tests/src/test/scala/system/packages/MessageHubMultiWorkersTest.scala b/tests/src/test/scala/system/packages/MessageHubMultiWorkersTest.scala index baedd0c..a73bf49 100644 --- a/tests/src/test/scala/system/packages/MessageHubMultiWorkersTest.scala +++ b/tests/src/test/scala/system/packages/MessageHubMultiWorkersTest.scala @@ -34,9 +34,9 @@ import common.WskProps import common.WskTestHelpers import spray.json.DefaultJsonProtocol._ import spray.json._ -import whisk.core.WhiskConfig -import whisk.core.database.test.ExtendedCouchDbRestClient -import whisk.utils.{JsHelpers, retry} +import org.apache.openwhisk.core.WhiskConfig +import org.apache.openwhisk.core.database.test.ExtendedCouchDbRestClient +import org.apache.openwhisk.utils.{JsHelpers, retry} import scala.concurrent.Await diff --git a/tests/src/test/scala/system/packages/MessageHubProduceTests.scala b/tests/src/test/scala/system/packages/MessageHubProduceTests.scala index 4ba4064..2e6761a 100644 --- a/tests/src/test/scala/system/packages/MessageHubProduceTests.scala +++ b/tests/src/test/scala/system/packages/MessageHubProduceTests.scala @@ -42,7 +42,7 @@ import spray.json._ import java.util.Base64 import java.nio.charset.StandardCharsets -import whisk.utils.retry +import org.apache.openwhisk.utils.retry @RunWith(classOf[JUnitRunner]) class MessageHubProduceTests diff --git a/tests/src/test/scala/system/utils/KafkaUtils.scala b/tests/src/test/scala/system/utils/KafkaUtils.scala index e01c715..dae3dcf 100644 --- a/tests/src/test/scala/system/utils/KafkaUtils.scala +++ b/tests/src/test/scala/system/utils/KafkaUtils.scala @@ -30,14 +30,14 @@ import scala.collection.mutable.ListBuffer import spray.json.DefaultJsonProtocol._ import spray.json._ import system.packages.ActionHelper._ -import whisk.utils.JsHelpers +import org.apache.openwhisk.utils.JsHelpers import scala.concurrent.duration.DurationInt import scala.language.postfixOps import common.TestHelpers import common.TestUtils import common.WskTestHelpers -import whisk.utils.retry +import org.apache.openwhisk.utils.retry trait KafkaUtils extends TestHelpers with WskTestHelpers { lazy val messageHubProps = KafkaUtils.initializeMessageHub()