Artem Bilan

Results 616 comments of Artem Bilan

Well, the `ConfigurableObjectInputStream` is still going to be there since it relies on the specific `ClassLoader`: ``` /** * Special {@link ObjectInputStream} subclass that resolves class names * against a...

I made the change: https://github.com/artembilan/spring-amqp/commit/16c9e8f54d74d5343b3cac086e0e58036b0e02c6. But decided that it is a bit of breaking in the behavior since now we do not throw `SecurityException` directly, but though some stack trace...

According to the Javadocs I don't see too much difference why would we use one over the other: ``` /** * Signals worker to shutdown. Worker will try initiating shutdown...

Sounds good. Any chances that you can move this issue into https://github.com/spring-projects/spring-integration-aws? And provide such a contribution over there? Unfortunately there might be nothing to do in this project. Although...

There is respective option to set such a converter: ``` /** * Set the bean name of a * {@link org.springframework.messaging.converter.SmartMessageConverter} (such as the * {@link org.springframework.messaging.converter.CompositeMessageConverter}) to use *...

Thanks, @rstoyanchev , for feedback! Well, I know that we have those `getShortLogMessage` and `getDetailedLogMessage`, which really don't help here too much. Since we still may produce a sensible info...

Thanks, @rstoyanchev , for your discernment! I don't the whole tool yet (that `MessageFormatter`), but I feel like it is going to be a big change for Spring Integration to...

The logic there is like this: ``` public static Flux usingWhen(Publisher resourceSupplier, Function> asyncCleanup) { return usingWhen(resourceSupplier, resourceClosure, asyncCleanup, (resource, error) -> asyncCleanup.apply(resource), asyncCleanup); } ``` So, that `handler.close()` is...

OK. So you do loop yourself, but you still ask something to be done in this library. Why just not try that `onErrorContinue()` for the `Flux` returned from `KafkaReceiver`? Otherwise,...

OK. Any chances to have a simple project from you to let us to reproduce and play with on our side? We are totally off how to make this "consumer...