Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
Fix failing cache IT (#497)
Browse files Browse the repository at this point in the history
  • Loading branch information
sruti1312 authored Oct 27, 2020
1 parent b34f487 commit 03c45f4
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -155,5 +155,8 @@ public class FieldDataCacheDeciderDedicatedMasterITest {
@AErrorPatternIgnored(
pattern = "CacheUtil:getCacheMaxSize()",
reason = "Shard request cache metrics is expected to be missing.")
@AErrorPatternIgnored(
pattern = "OldGenRca:getMaxOldGenSizeOrDefault()",
reason = "Old gen metrics is expected to be missing in this integ test.")
public void testFieldDataCacheAction() {}
}
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,9 @@ public class ShardRequestCacheDeciderDedicatedMasterITest {
@AErrorPatternIgnored(
pattern = "CacheUtil:getCacheMaxSize()",
reason = "Field data cache metrics is expected to be missing.")
@AErrorPatternIgnored(
pattern = "OldGenRca:getMaxOldGenSizeOrDefault()",
reason = "Old gen metrics is expected to be missing in this integ test.")
public void testShardRequestCacheAction() {
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -155,5 +155,8 @@ public class FieldDataCacheDeciderMultiNodeITest {
@AErrorPatternIgnored(
pattern = "CacheUtil:getCacheMaxSize()",
reason = "Shard request cache metrics is expected to be missing.")
@AErrorPatternIgnored(
pattern = "OldGenRca:getMaxOldGenSizeOrDefault()",
reason = "Old gen metrics is expected to be missing in this integ test.")
public void testFieldDataCacheAction() {}
}
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,9 @@ public class ShardRequestCacheDeciderMultiNodeITest {
@AErrorPatternIgnored(
pattern = "CacheUtil:getCacheMaxSize()",
reason = "Field data cache metrics is expected to be missing.")
@AErrorPatternIgnored(
pattern = "OldGenRca:getMaxOldGenSizeOrDefault()",
reason = "Old gen metrics is expected to be missing in this integ test.")
public void testShardRequestCacheAction() {
}
}

0 comments on commit 03c45f4

Please sign in to comment.