Skip to content

v2.4.0

Latest
Compare
Choose a tag to compare
@slinkydeveloper slinkydeveloper released this 16 Sep 13:39
· 3 commits to main since this release
2a001ae

Invocation retry policy

When used with Restate 1.5, you can now configure the invocation retry policy from the SDK directly. See https://github.com/restatedev/restate/releases/tag/v1.5.0 for more details on the new invocation retry policy configuration.

[Spring integration] Configure service options

A new API was introduced to configure services using the Spring integration:

// Specifiy the bean name of the configuration
@RestateService(configuration = "greeterConfiguration")
public class Greeter {
  // Your service
}

// Example configuration class
public class Configuration {
  @Bean
  public RestateServiceConfigurator greeterConfiguration() {
    return configurator -> configurator.inactivityTimeout(Duration.ofMinutes(2));
  }
}

What's Changed

Full Changelog: v2.3.0...v2.4.0