https://kotlinlang.org logo
Title
u

user

07/18/2022, 7:21 AM
Operator called default onErrorDropped after upgrading the Spring boot version from 2.1.7 to 2.6.4 This code is running fine in Springboot 2.1.7 version but after upgrading it to Springboot 2.6.4 it throws exception. Unable to rectify the issue. Let me know where I have to change in code fun getScheduledTasks(): Flux { return Flux.fromIterable(tasks) .filter { logger.info("{} was enabled? {}", it::class.qualifiedName, it.config.enabled) it.config.enabled } .flatMap { task ->...