You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you create layer using ZLayer.derive IDEA recognizes the type as:
val layer: ZLayer[Nothing, Any, KafkaConsumerImpl] = ZLayer.derive[KafkaConsumerImpl] which is wrong.
if I correct that manually to use proper environment dependency, to use some other service, code is ofc correct and compiles, but then IDE marks that line as error:
Seems current plugin implementation is not aware about derive macro yet.
The text was updated successfully, but these errors were encountered:
When you create layer using ZLayer.derive IDEA recognizes the type as:
val layer: ZLayer[Nothing, Any, KafkaConsumerImpl] = ZLayer.derive[KafkaConsumerImpl]
which is wrong.if I correct that manually to use proper environment dependency, to use some other service, code is ofc correct and compiles, but then IDE marks that line as error:
Seems current plugin implementation is not aware about
derive
macro yet.The text was updated successfully, but these errors were encountered: