-
Notifications
You must be signed in to change notification settings - Fork 144
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
Support build docker image when package project #363
Open
luoxiner
wants to merge
5
commits into
nacos-group:develop
Choose a base branch
from
luoxiner:master
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* Feat/sync support2.x#mutiple thread sync02 (nacos-group#304) * update port * Multithreading sync * solve conflict * imple SyncService * adapter deregister * optimization some code * fix deregister instance equals logic Co-authored-by: Oliver <[email protected]> Co-authored-by: paderlol <[email protected]> * Optimize the code for assigning tasks. (nacos-group#320) * Develop (nacos-group#321) * Optimize the code for assigning tasks. * Adds prefix to the input string if it doesn't already have it.nacos-group#308 * Fix nacos-group#305 (nacos-group#322) * Optimize the code for assigning tasks. * Adds prefix to the input string if it doesn't already have it.nacos-group#308 * Fix .nacos-group#305 * Fix cyclic dependency code (nacos-group#323) * Optimize the code for assigning tasks. * Adds prefix to the input string if it doesn't already have it.nacos-group#308 * Fix .nacos-group#305 * Fix cyclic dependency code. * Refactoring the Nacos Sync to Consul Logic (nacos-group#324) * Optimize the code for assigning tasks. * Adds prefix to the input string if it doesn't already have it.nacos-group#308 * Fix .nacos-group#305 * Fix cyclic dependency code. * Refactoring the Nacos Sync to Consul Logic. * nacos-group#346 nacos-group#350:nacos 2 nacos 同步关闭后心跳没有停止问题 ,nacos-sync删除目标节点问题 (nacos-group#347) * update port * fix nacos-group#297 (nacos-group#298) Co-authored-by: yangchun2 <[email protected]> * Revert "fix nacos-group#297 (nacos-group#298)" (nacos-group#318) This reverts commit a9df169. * 0.4.9-pre (nacos-group#325) * Feat/sync support2.x#mutiple thread sync02 (nacos-group#304) * update port * Multithreading sync * solve conflict * imple SyncService * adapter deregister * optimization some code * fix deregister instance equals logic Co-authored-by: Oliver <[email protected]> Co-authored-by: paderlol <[email protected]> * Optimize the code for assigning tasks. (nacos-group#320) * Develop (nacos-group#321) * Optimize the code for assigning tasks. * Adds prefix to the input string if it doesn't already have it.nacos-group#308 * Fix nacos-group#305 (nacos-group#322) * Optimize the code for assigning tasks. * Adds prefix to the input string if it doesn't already have it.nacos-group#308 * Fix .nacos-group#305 * Fix cyclic dependency code (nacos-group#323) * Optimize the code for assigning tasks. * Adds prefix to the input string if it doesn't already have it.nacos-group#308 * Fix .nacos-group#305 * Fix cyclic dependency code. * Refactoring the Nacos Sync to Consul Logic (nacos-group#324) * Optimize the code for assigning tasks. * Adds prefix to the input string if it doesn't already have it.nacos-group#308 * Fix .nacos-group#305 * Fix cyclic dependency code. * Refactoring the Nacos Sync to Consul Logic. --------- Co-authored-by: chenhao26 <[email protected]> Co-authored-by: Oliver <[email protected]> * fix:nacos 2 nacos 同步关闭后心跳没有停止问题 * fix:nacos 2 nacos 同步关闭后心跳没有停止问题 * fix:集群信息保存 cluster_level 为 null * fix: 1、注册时根据中心化逻辑判断同步,但是删除时逻辑不一致问题 2、如果停止同步nameservice为空问题 * 问题在于对destInstances列表的更新方式。在Java中,方法参数是按值传递的。这意味着当你传递一个对象到方法中时,实际上传递的是对象引用的副本。因此,如果你在方法内部改变了这个引用指向的对象(例如,将其指向一个新的对象),这个改变不会影响到原始的对象引用。 在你的代码中,destInstances = newDestInstance;这一行只是改变了destInstances引用在方法内部的指向,而不会改变方法外部传入的destInstances列表对象。这意味着,尽管你筛选出了需要反注册的实例,但这个改变不会反映到方法调用者那里。 --------- Co-authored-by: Oliver <[email protected]> Co-authored-by: paderlol <[email protected]> Co-authored-by: 杨春 <[email protected]> Co-authored-by: yangchun2 <[email protected]> Co-authored-by: chenhao26 <[email protected]> * 0.5.0 (nacos-group#351) * Optimize the code for assigning tasks. * Adds prefix to the input string if it doesn't already have it.nacos-group#308 * Fix .nacos-group#305 * Fix cyclic dependency code. * Refactoring the Nacos Sync to Consul Logic. * 1. 重新设计全量 Nacos 同步 Nacos 2. 修复Nacos Instance equals无效导致出现无法注册成功问题 3. 升级Nacos Sync JDK/Spring Boot版本 4. 保底同步从改成并发同步 5. 增加部分注释 * Develop (nacos-group#353) * Optimize the code for assigning tasks. * Adds prefix to the input string if it doesn't already have it.nacos-group#308 * Fix .nacos-group#305 * Fix cyclic dependency code. * Refactoring the Nacos Sync to Consul Logic. * 1. 重新设计全量 Nacos 同步 Nacos 2. 修复Nacos Instance equals无效导致出现无法注册成功问题 3. 升级Nacos Sync JDK/Spring Boot版本 4. 保底同步从改成并发同步 5. 增加部分注释 * 1. 优化部分代码 (nacos-group#354) * Optimize the code for assigning tasks. * Adds prefix to the input string if it doesn't already have it.nacos-group#308 * Fix .nacos-group#305 * Fix cyclic dependency code. * Refactoring the Nacos Sync to Consul Logic. * 1. 重新设计全量 Nacos 同步 Nacos 2. 修复Nacos Instance equals无效导致出现无法注册成功问题 3. 升级Nacos Sync JDK/Spring Boot版本 4. 保底同步从改成并发同步 5. 增加部分注释 * 1. 优化部分代码 --------- Co-authored-by: chenhao26 <[email protected]> Co-authored-by: Oliver <[email protected]> Co-authored-by: 龙竹 <[email protected]> Co-authored-by: 杨春 <[email protected]> Co-authored-by: yangchun2 <[email protected]>
chenhao26-nineteen
approved these changes
Jul 12, 2024
paderlol
reviewed
Jul 20, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Ref #361