Skip to content

Commit

Permalink
Merge branch 'develop' into 17025-add-mirror-node-team-to-codeowners-…
Browse files Browse the repository at this point in the history
…protobuf
  • Loading branch information
PavelSBorisov authored Dec 16, 2024
2 parents 8c9db74 + e20b66a commit 8f35177
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 13 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/config/node-release.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
release:
branching:
execution:
time: "20:00:00"
time: "18:00:00"
schedule:
- on: "2024-11-22"
name: release/0.57
- on: "2024-12-13"
name: release/0.58
initial-tag:
create: true
name: v0.57.0-alpha.0
name: v0.58.0-alpha.0

Original file line number Diff line number Diff line change
Expand Up @@ -679,14 +679,15 @@ void mergeWorksAfterOpen(final FilesTestType testType) throws Exception {
fileCompactor.compactFiles(storedOffsets, fileCollection2.getAllCompletedFiles(), 1);
// check 1 files were opened and data is correct
assertSame(1, fileCollection2.getAllCompletedFiles().size(), "Should be 1 files");
try (Stream<Path> list = Files.list(dbDir)) {
assertEquals(
1,
list.filter(file -> file.getFileName().toString().matches(storeName + ".*pbj"))
.filter(f -> !f.toString().contains("metadata"))
.count(),
"expected 1 db files but had [" + Arrays.toString(list.toArray()) + "]");
}
assertEquals(
1,
Files.list(dbDir)
.filter(file -> file.getFileName().toString().matches(storeName + ".*pbj"))
.filter(f -> !f.toString().contains("metadata"))
.count(),
"expected 1 db files but had ["
+ Arrays.toString(Files.list(dbDir).toArray())
+ "]");
checkData(fileCollectionMap.get(testType), storedOffsetsMap.get(testType), testType, 0, 1000, 10_000);
// close db
fileCollection2.close();
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.57.0
0.58.0

0 comments on commit 8f35177

Please sign in to comment.