Skip to content

Commit

Permalink
fix: summary generation
Browse files Browse the repository at this point in the history
  • Loading branch information
Angular2Guy committed Sep 23, 2024
1 parent 331bbe1 commit 65ee841
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
import org.springframework.web.client.RestClient;

import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule;


@Configuration
Expand All @@ -41,6 +42,8 @@ public RestClient createRestClient() {

@Bean
public ObjectMapper createObjectMapper() {
return new ObjectMapper();
var objectMapper = new ObjectMapper();
objectMapper.registerModule(new JavaTimeModule());
return objectMapper;
}
}

0 comments on commit 65ee841

Please sign in to comment.