George Klimov created ZEPPELIN-3715:
---------------------------------------
Summary: Fix text & titile passing in NotebookRestApi.runParagraph
Key: ZEPPELIN-3715
URL: https://issues.apache.org/jira/browse/ZEPPELIN-3715
Project: Zeppelin
Issue Type: Bug
Components: zeppelin-server
Affects Versions: 0.9.0
Reporter: George Klimov
Assignee: George Klimov
All paragraphs processing as blank, because text string is empty.
{code:java}
@POST
@Path("job/{noteId}/{paragraphId}")
@ZeppelinApi
public Response runParagraph(@PathParam("noteId") String noteId,
@PathParam("paragraphId") String paragraphId, String message)
throws IOException, IllegalArgumentException {
...
notebookService.runParagraph(
noteId, paragraphId, "", "", params,
new HashMap<String, Object>(), false, getServiceContext(), new
RestServiceCallback<>());
return new JsonResponse<>(Status.OK).build();
}
{code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)