Artem Bilan

Results 616 comments of Artem Bilan

Correct. The current implementation of Mail Source does this unconditionally: ``` .transform(Mail.toStringTransformer(this.properties.getCharset())) ``` So, independently of the mail content we always try to convert it into a `String`. It is...

+1 for a list representation: there is no guarantee that we always going to have close number of those sources, processors and sinks. I also don't think that it would...

Fixed via: https://github.com/spring-cloud/stream-applications/commit/e4143370eb8d0f1c485088e685519056b68acba3

Well, actually the question is: Why do you use `none` for the vanilla Kafka Consumer: ````java /** * This method returns the configurations that are going to be used by...

OK. So, looks like you do this: ``` try { rawRecords = _kafkaConsumer.poll(expireMs - now); } catch (OffsetOutOfRangeException | NoOffsetForPartitionException oe) { switch (_offsetResetStrategy) { case EARLIEST: oe.partitions().forEach(_consumerRecordsProcessor::clear); _kafkaConsumer.seekToBeginning(oe.partitions()); break;...

This one requires a team discussion since all of the guides suffer same problem. Those tutorials are based on this template: https://raw.githubusercontent.com/spring-guides/getting-started-macros/main/build_an_executable_jar_with_both.adoc. Therefore the name for the artifact is really...

Looks like that works and I see published `.asc` files as well. This issue can be closed. Thank you!

This is good stuff. Thank you very much for looking into that! As I expected this is really huge breaking change in the API, so I'm afraid we cannot accept...

Thank you both for keeping an eye on this! So, in November we are releasing `6.4`. After that we are good to start `7.0`. But that is going to be...

You probably don't share something else in your sample. The suggested code works: ``` @Test void testGh9145() throws InterruptedException { ZookeeperLockRegistry lockRegistry = new ZookeeperLockRegistry(this.client); CountDownLatch lockUnlockedLatch = new CountDownLatch(1);...