Anton

Results 20 comments of Anton

Are there any plans for merge it?

It's works, but schema detection isn't working. Clickhouse JDBC diver say about it ``` ClickHouse does not support catalog, please use setSchema instead ``` Need to replace calls of `getCatalog/setCatalog`...

Second: need to replace old driver ``` ru.yandex.clickhouse clickhouse-jdbc ${version.clickhouse-jdbc} true ``` by new ``` com.clickhouse clickhouse-jdbc ${version.clickhouse-jdbc} true ``` And change to actual version `0.3.2-patch11`

Hm, I'm sorry, it working now. I just didn't implement `AuthenticationManager`. My knowlege of spring is poor. Context may be accessed like this, it works too. ``` val auth: Authentication...

Maybe it will be better to prevent work without registered `AuthenticationManager`?

If `AuthenticationManager` isn't registered in DI container then the application started but we will get the error in runtime: > An Authentication object was not found in the SecurityContext It...

I think it can be closed, since everything works fine? Just one thing that I added: ```kotlin @GrpcGlobalServerInterceptor fun contextCoroutineInterceptor(): ServerInterceptor { return object : CoroutineContextServerInterceptor() { override fun coroutineContext(call:...

The library has similar class https://github.com/yiisoft/yii2-mongodb/blob/master/src/BatchQueryResult.php which was fixed in CVE-2020-15148

@jvmlet My handler are presented, but method `resolveMethodByThrowable` isn't invoked. I could not find the entry point where interceptor should be invoked :(