-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
实现全局锁在 zookeeper下的持久化, 完善 ZookeeperRepository 的相关方法, 并编写相关测试用例 #362
Conversation
Codecov Report
❗ Your organization is not using the GitHub App Integration. As a result you may experience degraded service beginning May 15th. Please install the Github App Integration for your organization. Read more. @@ Coverage Diff @@
## master #362 +/- ##
======================================
Coverage 0.00% 0.00%
======================================
Files 442 443 +1
Lines 8621 8681 +60
Branches 1417 1428 +11
======================================
- Misses 8621 8681 +60
... and 4 files with indirect coverage changes 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
@@ -62,11 +62,11 @@ | |||
public class ZookeeperRepository implements HmilyRepository { | |||
|
|||
private static final Logger LOGGER = LoggerFactory.getLogger(ZookeeperRepository.class); | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
在idea添加设置,空行也要缩进
@@ -29,7 +28,6 @@ | |||
* @author xiaoyu | |||
*/ | |||
@Getter | |||
@RequiredArgsConstructor |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这里为什么要去掉lombok自动生成构造函数,而自己去写
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
已修改
* 实现全局锁在 zookeeper下的持久化, 完善 ZookeeperRepository 的相关方法, 并编写相关测试用例 * HmilyLock类构造方法使用lombok注解@AllArgsConstructor
* 实现全局锁在 zookeeper下的持久化, 完善 ZookeeperRepository 的相关方法, 并编写相关测试用例 * HmilyLock类构造方法使用lombok注解@AllArgsConstructor
Make sure that:
mvn clean install -Dmaven.javadoc.skip=true
.for issue #361