This is an automated email from the ASF dual-hosted git repository.
rabbah pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk-client-js.git
The following commit(s) were added to refs/heads/master by this push:
new 5322369 Remove reference to closed issue in README.md (#205)
5322369 is described below
commit 532236924ef97c00542bca78165312c105525da6
Author: Andrew Levine <[email protected]>
AuthorDate: Fri Feb 21 12:19:56 2020 -0600
Remove reference to closed issue in README.md (#205)
---
README.md | 14 --------------
1 file changed, 14 deletions(-)
diff --git a/README.md b/README.md
index 683016b..17846ae 100644
--- a/README.md
+++ b/README.md
@@ -59,20 +59,6 @@ ow.resource.operation()
Users can override default constructor parameters by passing in explicit
options as shown in the example below.
-_**Please note**: Due to [an
issue](https://github.com/openwhisk/openwhisk/issues/1751) with the Node.js
runtime in OpenWhisk, environment variables used by the constructor are not
available until the invocation function handler is called. If you want to
define the client instance outside this function, you will need to manually
pass in the constructor options ._
-
-```javascript
-var openwhisk = require('openwhisk');
-// DOES NOT WORK! Environment parameters not set.
-var ow = openwhisk();
-
-function action() {
- return ow.actions.invoke('sample')
-}
-
-exports.main = action
-```
-
### outside openwhisk platform
```javascript