Ori Nakar created ZEPPELIN-5163:
-----------------------------------
Summary: Cannot add an interpreter using REST API
Key: ZEPPELIN-5163
URL: https://issues.apache.org/jira/browse/ZEPPELIN-5163
Project: Zeppelin
Issue Type: Bug
Components: rest-api
Affects Versions: 0.9.0
Reporter: Ori Nakar
I'm trying to add an interpreter using the REST API and cannot add parameters.
This is the command I run:
[https://my-zeppelin/api/interpreter/setting/]
{code:java}
curl --header "Content-Type: application/json" -X POST --insecure
--data @my-interpreter.json{code}
Here is the JSON data:
{code:java}
{
"id":"my-id",
"name":"my-name",
"group": "jdbc",
"properties": {
"my.property": {
"name": "my.property",
"value": "my value"}
},
"dependencies": []
}
{code}
Interpreter is added, but without the property value
--
This message was sent by Atlassian Jira
(v8.3.4#803005)