We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 864b02e + b095bf2 commit 5d4bf34Copy full SHA for 5d4bf34
src/main/java/com/bazel-diff/BazelClient.java
@@ -52,7 +52,7 @@ public Set<String> queryForImpactedTestTargets(Set<String> impactedTargets) thro
52
@Override
53
public Set<BazelSourceFileTarget> convertFilepathsToSourceTargets(Set<Path> filepaths) throws IOException, NoSuchAlgorithmException {
54
Set<BazelSourceFileTarget> sourceTargets = new HashSet<>();
55
- for (List<Path> partition : Iterables.partition(filepaths, 100)) {
+ for (List<Path> partition : Iterables.partition(filepaths, 1)) {
56
String targetQuery = partition
57
.stream()
58
.map(path -> path.toString())
0 commit comments