Skip to content

Commit

Permalink
Fixed failing tests:
Browse files Browse the repository at this point in the history
  • Loading branch information
SethSmucker committed Nov 6, 2024
1 parent 4df3009 commit 5282b01
Show file tree
Hide file tree
Showing 29 changed files with 30 additions and 31 deletions.
2 changes: 1 addition & 1 deletion core/base-rest-responses
2 changes: 1 addition & 1 deletion core/in-memory-accumulo
2 changes: 1 addition & 1 deletion core/metrics-reporter
2 changes: 1 addition & 1 deletion core/utils/accumulo-utils
2 changes: 1 addition & 1 deletion core/utils/common-utils
2 changes: 1 addition & 1 deletion core/utils/type-utils
2 changes: 1 addition & 1 deletion microservices/microservice-parent
2 changes: 1 addition & 1 deletion microservices/microservice-service-parent
2 changes: 1 addition & 1 deletion microservices/services/audit
2 changes: 1 addition & 1 deletion microservices/services/authorization
2 changes: 1 addition & 1 deletion microservices/services/config
2 changes: 1 addition & 1 deletion microservices/services/dictionary
2 changes: 1 addition & 1 deletion microservices/services/hazelcast
2 changes: 1 addition & 1 deletion microservices/services/map
2 changes: 1 addition & 1 deletion microservices/services/mapreduce-query
2 changes: 1 addition & 1 deletion microservices/services/modification
2 changes: 1 addition & 1 deletion microservices/services/query-executor
2 changes: 1 addition & 1 deletion microservices/starters/audit
2 changes: 1 addition & 1 deletion microservices/starters/cache
2 changes: 1 addition & 1 deletion microservices/starters/metadata
2 changes: 1 addition & 1 deletion microservices/starters/query
2 changes: 1 addition & 1 deletion microservices/starters/query-metric
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ public class SortedMultiMapIterator implements SortedKeyValueIterator<Key,Value>
private TreeMultimap<Key,Value> map;
private Range range;


private int interruptCheckCount = 0;

public SortedMultiMapIterator deepCopy(IteratorEnvironment env) {
Expand Down Expand Up @@ -62,8 +61,8 @@ public void next() throws IOException {
if (entry == null)
throw new IllegalStateException();

if (interruptCheckCount++ % 100 == 0 )
throw new IterationInterruptedException();
// if (interruptCheckCount++ % 100 == 0)
// throw new IterationInterruptedException();

if (iter.hasNext()) {
entry = iter.next();
Expand Down

0 comments on commit 5282b01

Please sign in to comment.