mirror of
https://github.com/twitter/the-algorithm.git
synced 2024-12-22 10:11:52 +01:00
feat: do not generate a stream that will be processed right after
This commit is contained in:
parent
ec83d01dca
commit
5c4844e29a
@ -253,8 +253,8 @@ public class EarlybirdFeatureSchemaMerger {
|
|||||||
|
|
||||||
// We do not need checksum for exported vars as all cached schemas are from the majority of the
|
// We do not need checksum for exported vars as all cached schemas are from the majority of the
|
||||||
// responses.
|
// responses.
|
||||||
featureSchemas.keySet().stream().forEach(key -> exportedVersions.add(key.getVersion()));
|
featureSchemas.keySet().forEach(key -> exportedVersions.add(key.getVersion()));
|
||||||
exportedVersions.stream().forEach(version -> {
|
exportedVersions.forEach(version -> {
|
||||||
builder.append('_');
|
builder.append('_');
|
||||||
builder.append(version);
|
builder.append(version);
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user