Skip to content

Commit

Permalink
Create BeanPostProcessor beans in static methods (#197)
Browse files Browse the repository at this point in the history
  • Loading branch information
tw-peeterkarolin authored Apr 5, 2024
1 parent 8121ef7 commit 279b911
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

#### 1.41.5 - 2024/04/05
### Changed
* Use static methods to create BeanPostProcessors.

#### 1.41.4 - 2024/04/02
### Changed
- `/getTaskTypes` endpoint accepts optional query parameter `status` to filter only types of tasks in the particular status(es).
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version=1.41.4
version=1.41.5
org.gradle.internal.http.socketTimeout=120000
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public JobsProperties twTasksJobsProperties() {

@Bean
@ConditionalOnMissingBean(CronJobAnnotationProcessor.class)
public CronJobAnnotationProcessor cronJobAnnotationProcessor() {
public static CronJobAnnotationProcessor cronJobAnnotationProcessor() {
return new CronJobAnnotationProcessor();
}
}

0 comments on commit 279b911

Please sign in to comment.