You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@zeppelin.apache.org by "George Klimov (JIRA)" <ji...@apache.org> on 2018/08/15 09:27:00 UTC

[jira] [Created] (ZEPPELIN-3715) Fix text & titile passing in NotebookRestApi.runParagraph

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)