Skip to content

Instantly share code, notes, and snippets.

When we routed to 2 of the services were they the only 2 healthy and everything else not? We didn't see liveliness probes be unhealthy for a bit after, how long? Does it match with how long it takes to call those every x seconds?

Cats-Effect 3 Guide to Migration Guides

Cats-Effect 3 Migration Links

Typelevel Library Versions latest on CE3

sealed trait Interact[A]
case class Ask(prompt: String)
extends Interact[String]
case class Tell(msg: String)
extends Interact[Unit]
trait Monad[M[_]] {
def pure[A](a: A): M[A]