[
https://issues.apache.org/jira/browse/KUDU-2659?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16738547#comment-16738547
]
Adar Dembo commented on KUDU-2659:
----------------------------------
Thanks for filing this bug report, and for putting together a fix.
I left you a comment on your pull request asking that you adapt it into a
gerrit change, as that's how we handle code review and submission.
> java kudu-client session can be used again after close
> ------------------------------------------------------
>
> Key: KUDU-2659
> URL: https://issues.apache.org/jira/browse/KUDU-2659
> Project: Kudu
> Issue Type: Bug
> Reporter: KarlManong
> Priority: Major
>
> java kudu-client session can be used again after close. But the client
> removed it from the set.
> {code:java}
> // Some comments here
> Insert insert = createBasicSchemaInsert(table, 0);
> session.apply(insert);
> session.close();
> assertTrue(session.isClosed());
> insert = createBasicSchemaInsert(table, 1);
> session.apply(insert);
> fail(); //except failed
> {code}
> see [github pull request 15|https://github.com/apache/kudu/pull/15]
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)