Re: REST API for updating interpreter settings

2017-01-13 Thread Deenar Toraskar
Ahyoung Thanks for your response. It turns out I was using POST instead of PUT. I got it working. It would be useful if there was an API that just incrementally updated a single interpreter property. With the currently API, if you just want to update a single property, you still have to submit

Re: REST API for updating interpreter settings

2017-01-11 Thread Ahyoung Ryu
Hi Deenar, The below sample input is just example. So you need to modify at lease "propname", "dependencies" and their values as well. { "name": "Markdown setting name", "group": "md", "properties": { "propname": "Otherpropvalue" }, "interpreterGroup": [ { "class":

REST API for updating interpreter settings

2017-01-10 Thread Deenar Toraskar
Hi I am trying to call the REST API endpoint to update an interpreter setting viz. https://zeppelin.apache.org/docs/latest/rest-api/rest-interpreter.html#update-an-interpreter-setting, but am unable to get this working. All the other Interpreter REST endpoints seem to work fine. Any ideas as to