Skip to content

Release 2.2.0

Latest
Compare
Choose a tag to compare
@slinkydeveloper slinkydeveloper released this 03 Jul 17:45
67aa0f7
  • You can now configure the service/handler options when binding the services, e.g. in Kotlin:
endpoint {
  bind(MyService()) {
    it.journalRetention = 10.days
    it.configureHandler("myHandler") {
      it.inactivityTimeout = 10.minutes
    }
  }
}
  • The following new configuration options are available for services and handlers: inactivityTimeout, abortTimeout, idempotencyRetention, journalRetention, ingressPrivate, enableLazyState. Please note, these will only work with Restate 1.4 onward.

What's Changed

Full Changelog: v2.1.1...v2.2.0