Skip to content

Commit

Permalink
fix spotless/assemble
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanBratanov committed Dec 17, 2024
1 parent 7017577 commit 2d4a637
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public class BlockBlobSidecarsTrackersPoolImpl extends AbstractIgnoringFutureHis

enum TrackerObject {
BLOCK,
BLOB_SIDECAR;
BLOB_SIDECAR
}

static final String COUNTER_BLOCK_TYPE = "block";
Expand Down Expand Up @@ -596,7 +596,7 @@ private void onFirstSeen(
final Duration blockFetchDelay = calculateBlockFetchDelay(slotAndBlockRoot);
asyncRunner.runAfterDelay(() -> fetchMissingContent(slotAndBlockRoot), blockFetchDelay);
}
// no delay for attempting to fetch blobs for when the block is first seen
// no delay for attempting to fetch blobs for when the block is first seen
case BLOCK -> fetchMissingContent(slotAndBlockRoot);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -883,11 +883,6 @@ void shouldNotDropUnusedBlobSidecarsIfFetchingHasNotOccurred() {
.index(UInt64.valueOf(2))
.build();

final Set<BlobIdentifier> blobsNotUserInBlock =
Set.of(
new BlobIdentifier(slotAndBlockRoot.getBlockRoot(), UInt64.valueOf(2)),
new BlobIdentifier(slotAndBlockRoot.getBlockRoot(), UInt64.valueOf(3)));

mockedTrackersFactory =
Optional.of(
(slotAndRoot) -> {
Expand Down

0 comments on commit 2d4a637

Please sign in to comment.