Skip to content

Commit

Permalink
Hot fix for policy timed update
Browse files Browse the repository at this point in the history
  • Loading branch information
chenzhiguo committed Dec 3, 2024
1 parent 8cf840d commit a6046c0
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 3 deletions.
4 changes: 4 additions & 0 deletions RELEASE-zh.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# 发布历史

## 1.5.2

1. 策略定时更新的热修复

## 1.5.1

1. 针对泳道策略的热修复
Expand Down
4 changes: 4 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release History

## 1.5.2

1. Hot fix for policy timed update

## 1.5.1

1. Hot fix for swimlane policy
Expand Down
2 changes: 1 addition & 1 deletion joylive-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
</scm>

<properties>
<revision>1.5.1</revision>
<revision>1.5.2</revision>
</properties>

<dependencyManagement>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ public FileWatcher(String name, SyncConfig config, Publisher<FileEvent> publishe
.condition(this::isStarted)
.runnable(this::run)
.build();
this.daemon.start();
if (publisher != null) {
publisher.addHandler(handler);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ public HttpWatcher(String name, SyncConfig config, Application application) {
.condition(this::isStarted)
.runnable(this::run)
.build();
this.daemon.start();
}

@Override
Expand Down
5 changes: 4 additions & 1 deletion joylive-package/src/main/assembly/config/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,10 @@ agent:
liveServiceTemplate: ${CONFIG_NACOS_KEY_LIVE_SERVICE_TEMPLATE:govern-liveService-${name}}
laneSpace:
type: ${CONFIG_LANE_SPACE_API_TYPE:file} # [file,jmsf,nacos]
url: ${CONFIG_LANE_SPACE_API_URL:http:http://api.jmsf.local:8080/v1}
url: ${CONFIG_LANE_SPACE_API_URL:http://api.jmsf.local:8080/v1}
interval: 5000
timeout: 3000
initialTimeout: 20000
# for jmsf
jmsf:
spacesUrl: /laneSpaces
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
</scm>

<properties>
<revision>1.5.1</revision>
<revision>1.5.2</revision>
<lombok.version>1.18.34</lombok.version>
<mockito-core.version>4.11.0</mockito-core.version>
<junit-jupiter.version>5.10.1</junit-jupiter.version>
Expand Down

0 comments on commit a6046c0

Please sign in to comment.