Mateusz Brzeziński
Mateusz Brzeziński
module name: filament manager Component to manage filaments and track filament usage. Signed-off-by: Mateusz Brzezinski
**Version**: '4.8.0' **Module**: `quill-jdbc` **Database**: `postgresql` I have model class: ```scala case class UserGameRound( id: String, userId: UserId, gameId: GameId, roundId: String, brandId: Int, startedAt: LocalDateTime, completedAt: Option[LocalDateTime], status: GameRoundStatus,...
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...