-
Updated
Aug 3, 2021 - Go
functions-as-a-service
Here are 135 public repositories matching this topic...
Environment details:
- local deployment (standalone openwhisk)
Steps to reproduce the issue:
- create a web action using this function:
> cat t.js
const main = () => ({
"body": {
"message": "hello"
},
"statusCode": 442
})
- invoke the web action
> wsk action update t t.js --web true
> curl -X POST `wsk action get t --url`
{
"code": "b86c3c
SQL Insert Statement
Current behavior:
All the SQL activities either don't support Insert or are specific to a usecase
Expected behavior:
to be able to insert to a sql database in an activity
What is the motivation / use case for changing the behavior?
many workflows/pipelines require logging to a database
Additional information you deem important (e.g. I need this tomorrow):
-
Updated
Jul 16, 2021 - Go
-
Updated
Aug 12, 2021 - TypeScript
-
Updated
Aug 12, 2021 - Dart
-
Updated
Aug 11, 2021 - JavaScript
-
Updated
Aug 15, 2021 - Scala
-
Updated
Aug 13, 2021 - Shell
-
Updated
May 18, 2021 - Go
-
Updated
Jul 15, 2021 - PHP
-
Updated
Jul 4, 2021 - JavaScript
-
Updated
Dec 11, 2018 - Go
-
Updated
Oct 23, 2019 - JavaScript
Java Client
Ruby Client
-
Updated
May 31, 2020
Just spent an embarrassing amount of time trying to determine why the wsk CLI was working on one machine and not on another. The ultimate issue was that I ended up specifying the APIHOST
variable as https://localhost:8443/
in the config file, with the trailing slash, which causes 404s since the CLI was sending requests to https://localhost:8443//api/v1/namespaces/_/triggers?limit=0&skip=0
(n
The test does not gracefully remove the minio server. Once it is added, it should be re-enabled.
-
Updated
Jul 7, 2021 - Java
-
Updated
Jun 10, 2021 - JavaScript
-
Updated
May 28, 2021 - Python
In this PR: apache/openwhisk-wskdeploy#1124
I updated all the dependencies to their latest versions, but go-18n has a new v2 interface which can be explored for adoption and hopefully in the process improve the methods by which we generate the i18n_resources.go file and language resources.
-
Updated
Aug 10, 2020 - JavaScript
currently you have to run composer twice, once to generate the function code and again to generate the ast (needed for k/o-ui visualization).
it would be convenient to run compose
once and specify two different files for output.
Loop detection
Add logic to detect when an API might be calling itself (directly or via another API) in a loop, and terminate the loop.
This can be done through injection of unique headers for every hop through the gateway.
For example:
Client request -> GW: GET /api1
GW inject header: X-ApiGw-Loop: get_api1
GW request -> GW: GET /api2
GW inject header: X-ApiGw-Loop: get_api1 get_api2
GW req
-
Updated
Aug 9, 2021
-
Updated
Oct 23, 2018 - JavaScript
If the npm package that is defined by https://github.com/apache/incubator-openwhisk-runtime-nodejs/blob/master/core/nodejs8Action/package.json was published to npm then projects would be able to depend on it and get the current set of js dependencies present in OW. Those projects building with webpack would also be able to exclude those packages from their builds, making their images smaller.
Improve this page
Add a description, image, and links to the functions-as-a-service topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the functions-as-a-service topic, visit your repo's landing page and select "manage topics."
Is your feature request related to a problem? Please describe.
Currently, there are two ways to create HTTPTrigger using the fission command.
fission fn create
with below parameters