This is an automated email from the ASF dual-hosted git repository.

dgrove pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk.git


The following commit(s) were added to refs/heads/master by this push:
     new 9f66633  Update the package name and path in documents (#4166)
9f66633 is described below

commit 9f66633aa930547b0ea7caa36d4c46d935d6224d
Author: Seong-hyun, Oh <[email protected]>
AuthorDate: Thu Dec 13 03:18:39 2018 +0900

    Update the package name and path in documents (#4166)
---
 docs/actions-new.md | 2 +-
 docs/concurrency.md | 4 ++--
 docs/mesos.md       | 4 ++--
 docs/spi.md         | 2 +-
 4 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/docs/actions-new.md b/docs/actions-new.md
index 3e9a86d..b51e483 100644
--- a/docs/actions-new.md
+++ b/docs/actions-new.md
@@ -67,7 +67,7 @@ a string describing the language (e.g., `nodejs`) followed by 
a colon and the ve
 as in `nodejs:8` or `php:7.2`.
 
 The manifest is a map of runtime family names to an array of specific kinds. 
The details of the
-schema are found in the [Exec 
Manifest](../common/scala/src/main/scala/whisk/core/entity/ExecManifest.scala).
+schema are found in the [Exec 
Manifest](../common/scala/src/main/scala/org/apache/openwhisk/core/entity/ExecManifest.scala).
 As an example, the following entry add a new runtime family called `nodejs` 
with a single kind
 `nodejs:6`.
 
diff --git a/docs/concurrency.md b/docs/concurrency.md
index 2d701c0..82d29b2 100644
--- a/docs/concurrency.md
+++ b/docs/concurrency.md
@@ -33,10 +33,10 @@ Concurrent activation processing within the same action 
container can be enabled
 * enable concurrency at runtime container env (nodejs container only allows 
concurrency when started with an env var __OW_ALLOW_CONCURRENT=true)
   * e.g. 
CONFIG_whisk_containerFactory_containerArgs_extraArgs_env_0="__OW_ALLOW_CONCURRENT=true"
 * disable log collection at invoker
-  * e.g. 
CONFIG_whisk_spi_LogStoreProvider="whisk.core.containerpool.logging.LogDriverLogStoreProvider"
+  * e.g. 
CONFIG_whisk_spi_LogStoreProvider="org.apache.openwhisk.core.containerpool.logging.LogDriverLogStoreProvider"
 * (optional) enable alternate log retrieve at controller
   * If you want OW api /activations/\<id\>/logs to return logs, you need to 
have an alternate log collection mechanism for action containers
-  * e.g. 
CONFIG_whisk_spi_LogStoreProvider=whisk.core.containerpool.logging.SplunkLogStoreProvider
+  * e.g. 
CONFIG_whisk_spi_LogStoreProvider=org.apache.openwhisk.core.containerpool.logging.SplunkLogStoreProvider
 * set the concurrency limit > 1 on any action that you want to process 
activations concurrently.
 
 
diff --git a/docs/mesos.md b/docs/mesos.md
index 519d536..4180341 100644
--- a/docs/mesos.md
+++ b/docs/mesos.md
@@ -26,7 +26,7 @@ To enable MesosContainerFactory, use the following TypeSafe 
Config properties
 
 | property | required | details | example |
 | --- | --- | --- | --- |
-| `whisk.spi.ContainerFactoryProvider` | required | enable the 
MesosContainerFactory | whisk.core.mesos.MesosContainerFactoryProvider |
+| `whisk.spi.ContainerFactoryProvider` | required | enable the 
MesosContainerFactory | 
org.apache.openwhisk.core.mesos.MesosContainerFactoryProvider |
 | `whisk.mesos.master-url` | required | Mesos master HTTP endpoint to be 
accessed from the invoker for framework subscription | 
http://192.168.99.100:5050 |
 | `whisk.mesos.master-url-public` | optional (default to 
whisk.mesos.master-url) | public facing Mesos master HTTP endpoint for exposing 
logs to cli users | http://192.168.99.100:5050 |
 | `whisk.mesos.role` | optional (default *) | Mesos framework role| any string 
e.g. `openwhisk` |
@@ -39,7 +39,7 @@ To enable MesosContainerFactory, use the following TypeSafe 
Config properties
 
 To set these properties for your invoker, set the corresponding environment 
variables e.g.,
 ```properties
-CONFIG_whisk_spi_ContainerFactoryProvider=whisk.core.mesos.MesosContainerFactoryProvider
+CONFIG_whisk_spi_ContainerFactoryProvider=org.apache.openwhisk.core.mesos.MesosContainerFactoryProvider
 CONFIG_whisk_mesos_masterUrl=http://192.168.99.100:5050
 ```
 
diff --git a/docs/spi.md b/docs/spi.md
index 1835438..831a0d1 100644
--- a/docs/spi.md
+++ b/docs/spi.md
@@ -53,7 +53,7 @@ SpiLoader uses a TypesafeConfig key to use for resolving 
which implementation sh
 
 The config key used to find the implementations classname is 
`whisk.spi.<SpiInterface>`.
 
-For example, the SPI interface `whisk.core.database.ArtifactStoreProvider` 
would load a specific implementation indicated by the  
`whisk.spi.ArtifactStoreProvider` config key.
+For example, the SPI interface 
`org.apache.openwhisk.core.database.ArtifactStoreProvider` would load a 
specific implementation indicated by the  `whisk.spi.ArtifactStoreProvider` 
config key.
 
 (so you cannot use multiple SPI interfaces with the same class name in 
different packages)
 

Reply via email to