Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Signed-off-by: Khushboo Rajput <[email protected]>
  • Loading branch information
khushbr committed Sep 9, 2023
1 parent a80d503 commit 136dc9b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -182,15 +182,15 @@ jacocoTestCoverageVerification {
}
}
}
}
}
else {
violationRules {
rule {
limit {
minimum = 0.7
}
}
}
}
}
}

Expand Down Expand Up @@ -338,7 +338,7 @@ dependencies {
compile group: 'com.google.errorprone', name: 'error_prone_annotations', version: '2.9.0'
compile group: 'com.google.protobuf', name: 'protobuf-java', version: '3.21.8'
implementation 'io.grpc:grpc-netty:1.49.0'
implementation 'io.grpc:grpc-protobuf:1.49.0'
implementation 'io.grpc:grpc-protobuf:1.53.0'
implementation 'io.grpc:grpc-stub:1.49.0'

implementation 'javax.annotation:javax.annotation-api:1.3.2'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,7 @@ public Decision operate() {

for (final ResourceEnum cacheType : modifyCacheActionPriorityList) {
BaseClusterRca baseClusterRcaMap = cacheTypeBaseClusterRcaMap.get(cacheType);
if (baseClusterRcaMap == null)
continue;
if (baseClusterRcaMap == null) continue;
getActionsFromRca(baseClusterRcaMap, impactedNodes).forEach(decision::addAction);
}
return decision;
Expand Down

0 comments on commit 136dc9b

Please sign in to comment.