apache / apache/openwhisk-composer-python
Read from file not implemented
未关闭
- 主要语言
- Python
- 星标
- 9
- 派生
- 12
- PR 合并指标
- 30 天内没有已合并 PR
描述
I am trying to use this with a basic example where my composition.py file and the function program files are located in the same directory.
This is what my hello.py looks like:
```
def main(args):
print("Hello")
print(args)
return {"key": "hello"}
```
And this is how my composition.py looks like:
```
import composer
def main():
return composer.action("HELLO", {
"filename": hello.py",
"limits": {
"memory": "128",
}
})
```
I am getting the "read from file not implemented" error.
贡献指南
评估
这个 Issue 还没有评估数据。