Skip to content

Commit

Permalink
nit: add proper naming
Browse files Browse the repository at this point in the history
  • Loading branch information
sumandas0 committed May 30, 2024
1 parent 9812fe8 commit eac6511
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ on:
- beta
- development
- master
- tagcleanup
- lineageondemand

jobs:
build:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ public static List<AtlasVertex> getAllAssetsWithClassificationAttached(AtlasGrap
return Collections.emptyList();
}
List<AtlasVertex> classificationVerticesList = IteratorUtils.toList(classificationVertices.iterator());
LOG.info("classificationVerticesList size: {}", classificationVerticesList.size());
LOG.info("classificationVerticesList size: {}", classificationVerticesList.size());
HashSet<AtlasVertex> entityVerticesSet = new HashSet<>();
for (AtlasVertex classificationVertex : classificationVerticesList) {
Iterable attachedVertices = classificationVertex.query()
Expand All @@ -402,7 +402,7 @@ public static List<AtlasVertex> getAllAssetsWithClassificationAttached(AtlasGrap
while (attachedVerticesIterator.hasNext()) {
entityVerticesSet.add(attachedVerticesIterator.next());
}
LOG.info("classificationVerticesSet size: {}", entityVerticesSet.size());
LOG.info("entityVerticesSet size: {}", entityVerticesSet.size());
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3007,7 +3007,7 @@ public void cleanUpClassificationPropagation(String classificationName) throws A
offset += CHUNK_SIZE;
} finally {
transactionInterceptHelper.intercept();
LOG.info("Cleaned up {} entities", offset);
LOG.info("Cleaned up {} entities for classification {}", offset, classificationName);
}

} while (offset < totalVertexSize);
Expand Down

0 comments on commit eac6511

Please sign in to comment.