Closed
Description
when I invoke from client but not connection, it's will get connection and do action in the callback. if the action throw a exception, and no exception handler of Context was setting .The exception will discard.
also see #116
client.queryWithParams("select * from player where id=?",JsonArray().add(1).add(2)) {
// callback never execute
}
client.getConnection() {
try {
it.queryWithParams("select * from player where id=?",JsonArray().add(1).add(2)) {
// do something
}
} catch(e : Throwable) {
//got the exception
}
}