Skip to content

Commit

Permalink
Change config and error message.
Browse files Browse the repository at this point in the history
  • Loading branch information
david-ry4n committed Oct 9, 2024
1 parent e04f4a9 commit af9714b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ public Builder blobsArchivePath(final String blobsArchivePath) {
File file = Path.of(blobsArchivePath).toFile();
if (!file.exists()) {
throw new InvalidConfigurationException(
String.format("blobsArchivePath does not exist: '%s'", blobsArchivePath));
String.format("Blobs archive path does not exist: '%s'", blobsArchivePath));
}
}
this.blobsArchivePath = blobsArchivePath;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ public class BeaconNodeDataOptions extends ValidatorClientDataOptions {
private int blobsPruningLimit = StorageConfiguration.DEFAULT_BLOBS_PRUNING_LIMIT;

@CommandLine.Option(
names = {"--Xdata-storage-archive-path"},
names = {"--Xdata-storage-blobs-archive-path"},
hidden = true,
paramLabel = "<STRING>",
description = "Path to write pruned blobs",
Expand Down

0 comments on commit af9714b

Please sign in to comment.