This commit is contained in:
Pedro Luiz 2023-07-17 21:41:16 -05:00 committed by GitHub
commit 1336b9ffac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);
}); });