Anton

Results 9 issues of Anton

Hi. I trying to use annotation @security checks, my config: ```kotlin @Configuration @EnableGlobalMethodSecurity(securedEnabled = true, proxyTargetClass = true) class Configuration { @Bean fun grpcAuthenticationReader(projectRepository: ProjectRepository): GrpcAuthenticationReader { return ApiTokenAuthenticationReader(projectRepository) }...

enhancement
help wanted
question

I suspect it need to fix CVE-2020-15148 here too

status:to be verified
severity:security

Hi, thanks for the work you've done. It's really great starter! I have some trouble, maybe it related with Kotlin CoroutineImpl. The interceptor below does not catch exception: ``` @GRpcService...

Hi, I thouth it would be nice to add ability to specify default deadline into client configuration, like this: ```yaml grpc: client: geo-ip: address: ${GEOIP_GRPC_ADDR} default-deadline-ms: 5000 ``` your opinion?

Hi! libfuse2 is almost not developing, unlike version 3. Are you planning to upgrade to version 3?

The field declared as `FixedString(2)` ```sql CREATE TABLE test ( country FixedString(2) ) ENGINE = MergeTree() PRIMARY KEY (country) ORDER BY (country) ; ``` If we tried to insert data...

bug

Code below works fine: ```php /** * Class UserStats * @ODM\Document(collection="user_stats") */ class UserStats { /** * @ODM\Id(strategy="NONE") */ private $id; /** @ODM\Field(type="int") */ private $downloaded; /** * @ODM\EmbedOne(targetDocument="core\mongo\keys\UserStatsKey") */...

Feature
Idea

Hi, configured Spring Boot like this article: https://medium.com/aerospike-developer-blog/caching-with-spring-boot-and-aerospike-17b91267d6c But have NPE: ``` java.lang.NullPointerException: null at org.springframework.data.aerospike.cache.AerospikeCache.get(AerospikeCache.java:116) ~[spring-data-aerospike-3.3.0.jar:na] at org.springframework.cache.interceptor.CacheAspectSupport.handleSynchronizedGet(CacheAspectSupport.java:442) ~[spring-context-5.3.12.jar:5.3.12] at org.springframework.cache.interceptor.CacheAspectSupport.execute(CacheAspectSupport.java:382) ~[spring-context-5.3.12.jar:5.3.12] at org.springframework.cache.interceptor.CacheAspectSupport.execute(CacheAspectSupport.java:345) ~[spring-context-5.3.12.jar:5.3.12] at org.springframework.cache.interceptor.CacheInterceptor.invoke(CacheInterceptor.java:64) ~[spring-context-5.3.12.jar:5.3.12] at...

enhancement

A see this project doesn't support anymore. If it's true you should make an announcement about this, please.

question