Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nacos客户端磁盘降级需求 issues:11053 #11207

Merged
merged 32 commits into from
Dec 5, 2023
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
44b739c
使用磁盘实现Nacos客户端版本降级
guozongkang Sep 28, 2023
6af7bbc
使用磁盘实现Nacos客户端版本降级
guozongkang Sep 28, 2023
938dfb8
使用磁盘实现Nacos客户端版本降级
guozongkang Sep 28, 2023
36a4546
使用磁盘实现Nacos客户端版本降级
guozongkang Sep 29, 2023
18cfd5f
创建对象时去除cachedir,去除磁盘定时保存任务
guozongkang Oct 7, 2023
93af51a
创建对象时去除cachedir,去除磁盘定时保存任务
guozongkang Oct 7, 2023
066b256
删除saveFailoverData方法
guozongkang Oct 7, 2023
714d2f4
移除getServiceInfo方法中的容灾逻辑
guozongkang Oct 7, 2023
6b3abe9
移除getServiceInfo方法中的容灾逻辑
guozongkang Oct 7, 2023
77e817c
删除掉注释的方法
guozongkang Oct 7, 2023
76c5eb3
使用serviceMap对比
guozongkang Oct 8, 2023
d38d494
使用serviceMap对比
guozongkang Oct 8, 2023
f692b4d
failoverSwith去除serviceNameSet集合
guozongkang Oct 8, 2023
ce8b205
failoverSwith去除serviceNameSet集合
guozongkang Oct 8, 2023
7f555ec
failoverSwith去除serviceNameSet集合
guozongkang Oct 8, 2023
aec2cfc
特殊情况下增补日志
guozongkang Oct 15, 2023
425a318
格式化checkstyle
guozongkang Oct 19, 2023
781a8de
对UtilAndComs checkstyle
guozongkang Oct 19, 2023
282e2ab
对test类 checkstyle
guozongkang Oct 19, 2023
bfe1740
去除无效变量
guozongkang Oct 19, 2023
1eb8cee
去除无效变量
guozongkang Oct 19, 2023
8f91c08
修改serviceInfo对象被重新覆盖的问题
guozongkang Oct 19, 2023
f8a6b5e
优化getServiceInfo方法
guozongkang Oct 24, 2023
d05d452
降级开关初次开启时发送通知
guozongkang Oct 25, 2023
289a81e
降级开关开启时,也发送通知
guozongkang Oct 26, 2023
c00d087
当降级开启时,不再订阅服务信息。去除多余的init方法
guozongkang Nov 1, 2023
b86e132
本地修复CI报错
guozongkang Nov 10, 2023
778222f
本地修复CI报错
guozongkang Nov 10, 2023
e048010
本地修复CI报错
guozongkang Nov 10, 2023
469a126
监控指标优化内部版本同步
guozongkang Nov 10, 2023
0ac2cc9
监控指标优化内部版本同步
guozongkang Nov 10, 2023
de60b8a
serviceName字段去除""
guozongkang Nov 12, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,10 @@
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</dependency>
<dependency>
nkorange marked this conversation as resolved.
Show resolved Hide resolved
<groupId>io.micrometer</groupId>
<artifactId>micrometer-core</artifactId>
</dependency>
</dependencies>

<build>
Expand Down
Loading