Skip to content

Commit

Permalink
Merge pull request #188 from dowenliu-xyz/main
Browse files Browse the repository at this point in the history
generate spring-configuration-metadata.json
  • Loading branch information
Ryan Baxter authored Jul 8, 2024
2 parents ce12b75 + 063923f commit 17528c8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions spring-cloud-circuitbreaker-resilience4j/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,11 @@
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-test-support</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<scope>annotationProcessor</scope>
</dependency>
</dependencies>


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,11 @@ public void setDisableThreadPool(boolean disableThreadPool) {
this.disableThreadPool = disableThreadPool;
}

boolean isDisableTimeLimiter() {
public boolean isDisableTimeLimiter() {
return disableTimeLimiter;
}

void setDisableTimeLimiter(boolean disableTimeLimiter) {
public void setDisableTimeLimiter(boolean disableTimeLimiter) {
this.disableTimeLimiter = disableTimeLimiter;
}

Expand Down

0 comments on commit 17528c8

Please sign in to comment.